-
-
Notifications
You must be signed in to change notification settings - Fork 527
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
Make Dolt work with mydumper #8592
Comments
First bug:
|
|
Made a bug in mydumper: But we may just have to support |
MyLoader fails with this error for a database I exported from MariaDB:
|
PRs supporting |
PR supporting
|
Now mydumper fails with
|
Now myloader fails on: CREATE TABLE `help_topic` ( `help_topic_id` int(10) unsigned NOT NULL, `name` char(64) NOT NULL, `help_category_id` smallint(5) unsigned NOT NULL, `description` text NOT NULL, `example` text NOT NULL, `url` text NOT NULL, PRIMARY KEY (`help_topic_id`), UNIQUE KEY `name` (`name`) ) ENGINE=Aria DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci PAGE_CHECKSUM=1 TRANSACTIONAL=0 COMMENT='help topics'" Error is:
I think we need to support |
We are missing MariaDB specific collations, namely |
Figured I'd link this here too 😄 |
Conservatively bumping the reported MySQL version from |
We are missing support for |
We need to match MySQL's |
Hey @CodeBleu, I believe we've reached a point where a Mydumper and Myloader actually works with dolt now! There are a few caveats and you may still see some errors, but it should work Please let us know how it works for you! |
https://github.com/mydumper/mydumper
A user is trying to load a database with myloader that he created with mydumper. It fails immediately in Dolt with:
The database
dbname
is created but nothing else is imported.The text was updated successfully, but these errors were encountered: