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
It's unclear in both cases why it is seeing the keyword as PARTITIONED.
This is because of this query which is used to get the basic table information:
SELECT*FROMINFORMATION_SCHEMA.TABLESWHERE
TABLE_SCHEMA IN ($placeholders) AND
TABLE_TYPE ='BASE TABLE'ORDER BY
TABLE_SCHEMA,
TABLE_NAME;
For partitioned tables, the create_options column says partitioned. The code should be changed so that if it sees this value, it looks at information_schema.partitions to identify what partitions are part of the table.
Morphism does not support database table partitioning. This should be added.
Here is an example table from the MySQL documentation on list column partitioning:
The
morphism-dump
command complains about thePARTITIONED
keyword:As does the
morphism-diff
command:It's unclear in both cases why it is seeing the keyword as
PARTITIONED
.The text was updated successfully, but these errors were encountered: