-
Notifications
You must be signed in to change notification settings - Fork 19
change sql script position so that it is run first #203
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
change sql script position so that it is run first #203
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
6417dd6
to
e226f96
Compare
Important Review skippedReview was skipped as selected files did not have any reviewable changes. 💤 Files selected but had no reviewable changes (1)
You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
e226f96
to
3d6fb55
Compare
TL;DR
Renamed SQL file to include a numeric prefix for proper ordering.
What changed?
Renamed
clickhouse_create_insert_null_table.sql
to1_clickhouse_create_insert_null_table.sql
in the internal/tools directory. The file content remains unchanged.How to test?
Why make this change?
Adding a numeric prefix (
1_
) to the filename establishes a clear execution order for SQL scripts. This naming convention helps maintain proper sequencing when multiple SQL scripts need to be run in a specific order.