Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This pull request updates the sql_db_utils package by modifying SQL function compilation to include underscores and by adding a new schema creation class, along with a version update.
- Updated version from 1.1.0 to 1.1.1
- Updated functions to include underscores in concatenations
- Added a new class for creating schemas
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| sql_db_utils/sql_extras.py | Updated concatenation in SQL functions and added a new CreateSchema implementation |
| sql_db_utils/version.py | Incremented version number |
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
Add this suggestion to a batch that can be applied as a single commit.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.Add this suggestion to a batch that can be applied as a single commit.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.Suggestion cannot be applied right now. Please check back later.
This pull request includes updates to the
sql_db_utilspackage, primarily focusing on versioning and SQL function compilation improvements. The most important changes include updating the version number, modifying ID generation functions to include underscores, and adding a new class for creating schemas.Version update:
sql_db_utils/__version__.py: Updated version from1.1.0to1.1.1.SQL function compilation improvements:
sql_db_utils/sql_extras.py: Modified thecompile_create_prefixed_id_functionto concatenate an underscore between the prefix and the next value.sql_db_utils/sql_extras.py: Modified thecompile_create_suffixed_id_functionto concatenate an underscore between the next value and the suffix.sql_db_utils/sql_extras.py: Added a new classCreateSchemafor creating schemas, along with its compilation function.