You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your work on pg2mysql - it's been a godsend on a number of occasions.
This is a minor issue, but it seems that column name strings get misinterpreted as column type strings, producing an invalid SQL output. Creating an issue here just for reference.
Input:
...
CREATETABLEtest (
integer1 text,
integer2 text
);
...
Expected output:
CREATETABLEtest (
integer1 text,
integer2 text
) TYPE=MyISAM;
Thank you for your work on
pg2mysql
- it's been a godsend on a number of occasions.This is a minor issue, but it seems that column name strings get misinterpreted as column type strings, producing an invalid SQL output. Creating an issue here just for reference.
Input:
Expected output:
Actual output:
The text was updated successfully, but these errors were encountered: