-
Notifications
You must be signed in to change notification settings - Fork 225
NEOS-1787: add auto map support to mysql #3412
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
The latest Buf updates on your PR. Results from workflow Buf / buf (pull_request).
|
| c.TABLE_SCHEMA AS schema_name, | ||
| c.TABLE_NAME AS table_name, | ||
| c.COLUMN_NAME AS column_name, | ||
| c.COLUMN_TYPE AS data_type, |
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 is kinda weird. the above query we are using c.data_type but this one we are using c.column_type which is different. I didnt want to update it at the expense of potentially causing a bux.
| c.TABLE_NAME AS table_name, | ||
| c.COLUMN_NAME AS column_name, | ||
| c.COLUMN_TYPE AS data_type, | ||
| c.COLUMN_TYPE AS column_type, -- same as data_type but includes things like the length, or set/enum information |
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.
@alishakawaguchi - This column_type properly tracks mysql set and enum values. So I'm guessing that the mysql schema drift changes won't track if this changes. I created a ticket for this: NEOS-1791
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3412 +/- ##
==========================================
- Coverage 24.32% 24.24% -0.09%
==========================================
Files 417 417
Lines 49405 49856 +451
==========================================
+ Hits 12020 12089 +69
- Misses 36251 36631 +380
- Partials 1134 1136 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Benchstat Geomean Results-8.14% sec/op, -4.17% B/op, -0.68% allocs/op Benchstat results |
…to-map-support-to-mysql
No description provided.