-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CBRD-25709] Trigger DEFERRED 구문에서 재귀 구조 발생 시 무한 루프 발생(Maximum trigger depth 미작동) #5676
Open
kangmin5505
wants to merge
11
commits into
CUBRID:develop
Choose a base branch
from
kangmin5505:CBRD-25709
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
be6b7c9
try to test using directly free_state instead of using tr_finish
kangmin5505 9008c02
try to apply local tr_curr_step
kangmin5505 51d2f06
Merge remote-tracking branch 'upstream/develop' into CBRD-25709
kangmin5505 21d9883
Use tr_curr_step in +1 tr_Current_depth
kangmin5505 1ff21f5
Add an annotation
kangmin5505 03a16cf
Merge remote-tracking branch 'upstream/develop' into CBRD-25709
kangmin5505 bcd811a
Implement BFS structure for deferred trigger.
kangmin5505 f2bfd07
Merge remote-tracking branch 'upstream/develop' into CBRD-25709
kangmin5505 b832b5c
refactor while and do-while loops to for loops for improved readability
kangmin5505 c914a03
Merge remote-tracking branch 'upstream/develop' into CBRD-25709
kangmin5505 d840f4d
codestyle
kangmin5505 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
assert(next == NULL || next == t->next);
next = t->next;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
코드 리뷰 감사합니다.
춘택님께서는 execute_activity 에 의해 기존의 next 를 잃어버리는 상황이 희박하거나 불가능하다고 하더라도, assert 코드를 작성하여 좀 더 명확하게 표현하는 것이 더 나은 방법이라고 생각하시는 것이 맞을까요?