pgloader/test/mysql
Dimitri Fontaine 513455f552 Implement support for MySQL bitstrings.
We migrate bit(xx) to the same PostgreSQL datatype bit(xx) where in Postgres
we can use bitstring as documented at the following URL. In particular the
COPY syntax accepts the notation Xabcd for the values, which is quite nice
when MySQL sends the data to us a a byte vector:

  https://www.postgresql.org/docs/current/datatype-bit.html

Fixes #943.
2019-04-19 12:52:04 +02:00
..
db789.load Implement materialize views in PostgreSQL source support. 2018-12-16 23:17:37 +01:00
db789.sql Refrain from TRUNCAT'ing an empty list of tables. 2018-06-15 17:46:31 +02:00
f1db-citus.load Implement Citus support from a MySQL database. 2018-12-17 16:31:47 +01:00
f1db-data.load Refrain from creating tables in “data only” operations. 2018-01-25 23:32:31 +01:00
f1db.circuits.my.sql Refrain from creating tables in “data only” operations. 2018-01-25 23:32:31 +01:00
f1db.circuits.pg.sql Refrain from creating tables in “data only” operations. 2018-01-25 23:32:31 +01:00
f1db.load Implement support for MySQL useSSL=true|false option. 2018-03-16 16:41:40 +01:00
hex.sql Add a new transform function for byte-vector to hexadecimal string. 2019-03-18 14:21:33 +01:00
history.sql Add test cases for MySQL. 2017-09-14 15:59:10 +02:00
my.load Add a new transform function for byte-vector to hexadecimal string. 2019-03-18 14:21:33 +01:00
my.sql Implement support for MySQL bitstrings. 2019-04-19 12:52:04 +02:00
README.md Add test cases for MySQL. 2017-09-14 15:59:10 +02:00

pgloader tests for MySQL

The idea here is to create a MySQL database with a static known set of data so that we may then compare the data against a PostgreSQL load done with pgloader.

This is very much WIP at the moment, but at least it got started.