iamnumlock
Results
2
comments of
iamnumlock
> Hi @iamnumlock ; can you give us the result of the MySQL catalog query that pgloader uses to determine the data types on the source database? > > ```sql...
root@localhost [my_db] > select c.table_name, t.table_comment, -> c.column_name, c.column_comment, -> c.data_type, c.column_type, c.column_default, -> c.is_nullable, c.extra -> from information_schema.columns c -> join information_schema.tables t using(table_schema, table_name) -> where c.table_schema =...