-
Notifications
You must be signed in to change notification settings - Fork 13.8k
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
Fixing mysql install #203
Fixing mysql install #203
Conversation
|
@@ -634,13 +634,14 @@ def fetch_metadata(self): | |||
db.session.flush() | |||
if not dbcol: | |||
dbcol = TableColumn(column_name=col.name) | |||
|
|||
num_types = ('DOUBLE', 'FLOAT', 'INT', 'BIGINT') |
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.
missing 'LONG' ?
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.
Good catch. The bug I fixed here with mysql was very confusing where the type was BIGINT(64)
instead of just BIGINT
👍 |
No description provided.