🦺 enhance the translation of SQLite timestamp expressions that use current_timestamp within date/time functions
#157
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 improves the handling of default values when converting SQLite schemas to MySQL, specifically by enhancing the translation of SQLite timestamp expressions that use
current_timestampwithin date/time functions. The changes ensure that expressions likedatetime(current_timestamp, ...)are correctly mapped to the appropriate MySQL equivalents, addressing cases that were previously missed.Key changes include:
Enhancements to Timestamp Expression Handling:
SQLITE_CURRENT_TS_FUNCto match SQLite expressions such asdatetime(current_timestamp, ...), allowing for more accurate detection and translation of these defaults._translate_default_for_mysqlto detect when the default value usesdatetime,date, ortimefunctions withcurrent_timestamp, and map them to the correct MySQL expressions (CURRENT_TIMESTAMP,UTC_TIMESTAMP, etc.) forTIMESTAMP,DATETIME,DATE, andTIMEcolumns. [1] [2] [3] [4] [5]Testing Improvements:
datetime(current_timestamp, 'localtime')anddatetime(current_timestamp, 'utc')are properly converted toCURRENT_TIMESTAMPandUTC_TIMESTAMP(with precision, if specified) in MySQL.Partially fixes #154