add partition key to id

This commit is contained in:
Jack Forgash 2025-02-12 08:57:49 -07:00
parent d84b263aea
commit b7d2d25f63
3 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ SELECT
'method',
'block',
'id',
'Flipside/getBlock/' || block_id :: STRING,
'Flipside/getBlock/' || partition_key || '/' || block_id :: STRING,
'params',
OBJECT_CONSTRUCT(
'block_id',

View File

@ -89,7 +89,7 @@ SELECT
'method',
'chunk',
'id',
'Flipside/getChunk/' || chunk_hash :: STRING,
'Flipside/getChunk/' || partition_key || '/' || chunk_hash :: STRING,
'params',
OBJECT_CONSTRUCT(
'chunk_id',

View File

@ -98,7 +98,7 @@ SELECT
'method',
'EXPERIMENTAL_tx_status',
'id',
'Flipside/getTransactionWithStatus/' || tx_hash :: STRING,
'Flipside/getTransactionWithStatus/' || partition_key || '/' || tx_hash :: STRING,
'params',
OBJECT_CONSTRUCT(
'tx_hash',