Open
Conversation
maxdml
reviewed
Dec 5, 2025
Collaborator
maxdml
left a comment
There was a problem hiding this comment.
Thanks @shirzady1934 for the PR.
47bc52a to
243fa52
Compare
243fa52 to
0ba9bce
Compare
Collaborator
|
@shirzady1934 one of the test does not pass: https://github.com/dbos-inc/dbos-transact-golang/actions/runs/21194325710/job/60966985052?pr=199 It looks like either we are not incrementing the step ID correctly, either there is a bug in how fork copies over the steps. This error might have been ignored in the past because record child output was incorrectly ignoring conflicts. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR addresses issue #148 by refactoring the system database to merge the functionality of
recordChildGetResultintorecordOperationResult.The
recordOperationResultfunction has been updated to handle the parent-child relationship by accepting achildWorkflowID. TherecordChildGetResultfunction has been removed, and its call sites have been updated to use the newrecordOperationResult.During the development process, a few other issue were identified and resolved a bug in the dynamic SQL query construction in the refactored
recordOperationResultfunction was fixed.Additionally, this PR addresses a race condition in the CLI integration tests that was causing flaky test runs. The tests were failing because they were checking for queued workflows before the parent workflow had finished enqueueing them. A polling mechanism has been added to wait until the expected number of workflows are present in the queue before proceeding with the assertions.