-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Drop support for legacy platforms #3055
Drop support for legacy platforms #3055
Conversation
62336a0
to
e59f616
Compare
e59f616
to
a7f77ce
Compare
a7f77ce
to
dbdac39
Compare
'datetime2' => 'datetime', | ||
'date' => 'date', | ||
'time' => 'time', | ||
'datetimeoffset' => 'datetimetz', |
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.
Would it make sense to have this sorted by key so that when you're looking for something, you don't have to use Ctrl + F
?
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.
Done also for other platforms & keywords (separate commit).
'pgsql100' => PostgreSQL100Keywords::class, | ||
'oracle' => OracleKeywords::class, | ||
'db2' => DB2Keywords::class, | ||
'sqlanywhere' => SQLAnywhereKeywords::class, |
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.
Can we have these sorted?
Changes:
|
40acdb6
to
31146e9
Compare
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.
Highlighted 4 bugs that may be worth fixing in 2.x too.
'AUDIT', | ||
'HAVING', | ||
'OFFLINE ', |
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.
Trailing space was a bug? Removed.
'AND', | ||
'FLOAT', | ||
'NOTFOUND ', |
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.
Trailing space was a bug? Removed.
'unsigned int' => 'integer', | ||
'numeric' => 'decimal', | ||
'smallint' => 'smallint', | ||
'unsigned smallint', 'smallint', |
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.
This was a bug - not a key-value mapping.
'smallint' => 'smallint', | ||
'unsigned smallint', 'smallint', | ||
'tinyint' => 'smallint', | ||
'unsigned tinyint', 'smallint', |
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.
This was a bug - not a key-value mapping.
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.
👍
Noticed that we don't have any explicit mapping for PostgreSQL > 9.4, but that's eventually for a separate patch, and probably not relevant for newer setups (10.x)
Drops:
closes #3052
closes #3053
closes #3054
closes #3058