-
Notifications
You must be signed in to change notification settings - Fork 398
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
UUID adjustments for mariadb #1924
UUID adjustments for mariadb #1924
Conversation
Codecov ReportBase: 73.25% // Head: 88.36% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #1924 +/- ##
=============================================
+ Coverage 73.25% 88.36% +15.11%
- Complexity 7917 7922 +5
=============================================
Files 227 227
Lines 21133 21156 +23
=============================================
+ Hits 15480 18694 +3214
+ Misses 5653 2462 -3191
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
$this->tableEngineKeyword = $tableEngineKeyword; | ||
} | ||
if ($uuidColumnType = $mysqlConfig['uuidColumnType']) { | ||
$enable = strtolower($uuidColumnType) === 'native'; |
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.
[Minor] Wouldn't be better to have a standalone platform for MariaDb that extends a MySQL one?
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.
Yes, that would be great, but that is its own PR
Allows to use native uuid type on MariaDB by enabling it in the propel configuration:
While the actual change is quite small, I had to went through a lot of places to find a suitable entry point. I had to refactor some methods along the way, and I think it is best to keep these changes. I have put them in different commits if this helps reviewing!
Also, this includes #1922 , agnostic tests are running