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 @@ -37,6 +37,7 @@ export function observedReadsByWrite(writeEvent: Progress, rtxInfo: ReadTxInfo):

FOR wExPlan, wpo IN 1 OUTBOUND ${writeEvent} progressOf
${aqlGen.genTxIsolationCodeForTraversal('wExPlan', 'wpo')}
FILTER ${writeEvent}.error == null
LET wds = FIRST(
FOR ds IN 1 OUTBOUND wExPlan affects
RETURN ds
Expand All @@ -52,6 +53,7 @@ export function observedReadsByWrite(writeEvent: Progress, rtxInfo: ReadTxInfo):
FOR breakingEvent, bpo IN 1 INBOUND breakingExPlan progressOf // looking to find writeOps' execPlan and event
${aqlGen.genTxIsolationCodeForTraversal('breakingEvent', 'bpo')}
FILTER breakingEvent.timestamp > minReadTime
AND breakingEvent.error == null
SORT breakingEvent.timestamp DESC
RETURN breakingEvent.timestamp
)
Expand Down
Loading