-
Notifications
You must be signed in to change notification settings - Fork 104
Closed
Labels
Description
Describe the bug
Updating to MariaDB 10.9.4 and I can no longer use skeema.
[WARN] Skipping table gen_territories: Skeema does not support generating a diff of this table. Use --debug to see which properties of this table are not supported.
--debug shows the following:
[DEBUG] The desired state ("to" side of diff) contains unexpected or unsupported clauses in SHOW CREATE TABLE.
--- desired state expected CREATE
+++ desired state actual SHOW CREATE
@@ -3,2 +3,2 @@
- `TerritoryName` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `sales_rep` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+ `TerritoryName` varchar(45) NOT NULL,
+ `sales_rep` varchar(45) DEFAULT NULL,
@@ -6,3 +6,3 @@
- `gdata_calendarid` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'This is the calendar ID for V1',
- `gdata_sub` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'This is the subscriber for V2',
- `gdata_access_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'This is the subscriber''s access toke for V2',
+ `gdata_calendarid` varchar(191) DEFAULT NULL COMMENT 'This is the calendar ID for V1',
+ `gdata_sub` varchar(191) DEFAULT NULL COMMENT 'This is the subscriber for V2',
+ `gdata_access_token` varchar(255) DEFAULT NULL COMMENT 'This is the subscriber''s access toke for V2',
Environment
- Skeema version: skeema version 1.8.2-community, commit 1980132, released 2022-09-14T20:51:18Z
- Database vendor, version, OS/platform: MariaDB 10.9.4 (docker tag mariadb:latest)
To Reproduce
Upgrade to MariaDB 10.9.4 and try to use skeema
Expected behavior
skeema works
Additional context
MariaDB/server@0703c9ec1e
MariaDB/server@0333ddd3ec
https://jira.mariadb.org/browse/MDEV-29446