{{ message }}
Fix YugabyteDB CI by adding ysql_yb_enable_listen_notify flag#1345
Open
tlmorgan24 wants to merge 2 commits into
Open
Fix YugabyteDB CI by adding ysql_yb_enable_listen_notify flag#1345tlmorgan24 wants to merge 2 commits into
tlmorgan24 wants to merge 2 commits into
Conversation
… LISTEN and NOTIFY statements are enabled
884081d to
ae78127
Compare
June 19, 2026 06:02
ae78127 to
376b9d4
Compare
June 19, 2026 06:45
mrigger
reviewed
Jun 19, 2026
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
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.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.
Summary
The YugabyteDB CI job was failing because SQLancer generates
LISTEN,NOTIFY, andUNLISTENstatements, but YugabyteDB has this feature disabled by default. This caused anAssertionErroreach time one of these statements was executed, terminating the test run.The fix enables the
ysql_yb_enable_listen_notifyruntime flag on both the tserver and master when starting YugabyteDB in CI, allowing these statements to execute as intended.Changes
.github/workflows/main.yml: Pass--tserver_flagsand--master_flagstoyugabyted startto enableysql_yb_enable_listen_notify