We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e7b1f9 commit 991c59fCopy full SHA for 991c59f
apps/common/src/main/scala/org/lfdecentralizedtrust/splice/store/UpdateHistory.scala
@@ -1711,14 +1711,11 @@ class UpdateHistory(
1711
-- Note: to make update ids consistent across SVs, we use the contract id as the update id.
1712
max(c.contract_id)
1713
from
1714
- update_history_transactions tx,
1715
update_history_creates c
1716
where
1717
- tx.history_id = $historyId and
1718
-
1719
- tx.migration_id = $migrationId and
1720
- tx.record_time = ${CantonTimestamp.MinValue} and
1721
- tx.row_id = c.update_row_id
+ history_id = $historyId and
+ migration_id = $migrationId and
+ record_time = ${CantonTimestamp.MinValue}
1722
""".as[Option[String]].head,
1723
s"getLastImportUpdateId",
1724
)
0 commit comments