-
Notifications
You must be signed in to change notification settings - Fork 7k
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
Add backward compatibility check in stress test #27928
Conversation
@mergify update |
Command
Hey, I reacted but my real name is @Mergifyio |
@Mergifyio update |
Command
|
@Mergifyio update |
Command
|
@Mergifyio update |
Command
|
@Mergifyio update |
Command
|
@Mergifyio update |
Command
|
@Mergifyio update |
Command
|
@Mergifyio update |
Command
|
9987c45
to
9a60109
Compare
@Mergifyio update |
Command
|
@Mergifyio update |
Command
|
Found new problem:
Investigating. |
@Mergifyio update |
✅ Branch has been successfully updated |
New problem was found:
Will be fixed in #35021 |
@Mergifyio update |
✅ Branch has been successfully updated |
Should be merged with ClickHouse#27928
@Mergifyio update |
✅ Branch has been successfully updated |
if (fake_drop) | ||
{ | ||
if (parsed_query->as<ASTDropQuery>()) | ||
return; |
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.
Does it make sense to replace DROP
with TRUNCATE
for table engines like Memory
or Join
to reduce memory usage?
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.
But how we will know which table engine is used by drop query?
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.
By executing one more query to get table engine or by moving this logic to server (but it's questionable)
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.
Makes sense, I will try it (created issue to not forget)
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en
Changelog category (leave one):
Changelog entry (a user-readable short description of the changes that goes to CHANGELOG.md):
Add backward compatibility check in stress test.
Closes #25088
Detailed description / Documentation draft:
...