-
Notifications
You must be signed in to change notification settings - Fork 6
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
Fir 27646 remove client generated query #302
Conversation
63644b0
to
b6c3298
Compare
} | ||
Thread.sleep(5000); | ||
verifyThatNoMoreRecordsAreAdded(connection, "first_statement_cancel_test", totalRecordsToInsert); | ||
verifyThatNoMoreRecordsAreAdded(connection, "first_statement_cancel_test"); |
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.
The only insert statement I see in this test is insert into ex_lineitem ( l_orderkey ) SELECT * FROM GENERATE_SERIES(1, 1000)
Why do we check first_statement_cancel_test
table then? Shouldn't it be ex_lineitem
? I'm probably missing the idea of the test
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.
Do we ever interact with first_statement_cancel_test
and second_statement_cancel_test
here?
log.warn("Could not execute statement", e); | ||
} | ||
} | ||
// @BeforeAll |
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.
Do we plan to even uncomment this?
In case no, let's just delete this part. In case yes, let's add a comment on top mentioning when do we plan to uncomment this
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.
uncommented. 10x!
return quedAborted || runningAborted; | ||
} | ||
|
||
private boolean abortCallWithId(Optional<Call> call) { |
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.
nit: abortCallWithId
-> abortCall
since no id is passed
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.
renamed
91d885e
to
f4bc232
Compare
f4bc232
to
09821bf
Compare
|
No description provided.