We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The fix implemented in #156 will format the SQL in the following way:
SYSTEM SYNC REPLICA ON CLUSTER "{cluster}"db.table_name
As you can see, compared to the documentation, there is a space missing between the ON CLUSTER clause and the db.table_name.
The rendered SQL should look like this:
SYSTEM SYNC REPLICA ON CLUSTER "{cluster}" db.table_name
So simply a space should be added.
The text was updated successfully, but these errors were encountered:
PR with fix has been merged and released in 1.4.4
Sorry, something went wrong.
No branches or pull requests
Describe the bug
The fix implemented in #156 will format the SQL in the following way:
As you can see, compared to the documentation, there is a space missing between the ON CLUSTER clause and the db.table_name.
Expected behaviour
The rendered SQL should look like this:
So simply a space should be added.
Configuration
Environment
The text was updated successfully, but these errors were encountered: