Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1711,14 +1711,11 @@ class UpdateHistory(
-- Note: to make update ids consistent across SVs, we use the contract id as the update id.
max(c.contract_id)
from
update_history_transactions tx,
update_history_creates c
where
tx.history_id = $historyId and

tx.migration_id = $migrationId and
tx.record_time = ${CantonTimestamp.MinValue} and
tx.row_id = c.update_row_id
history_id = $historyId and
migration_id = $migrationId and
record_time = ${CantonTimestamp.MinValue}
""".as[Option[String]].head,
s"getLastImportUpdateId",
)
Expand Down
Loading