[Maria-discuss] [Maria Discuss] Building from source failing on Mac OS X complaining of librarymariadb

2020-08-20 Thread Rodrigo Souza
Hello all, I’m a newbie, trying to familiarize myself with the source code, however, once I followed the steps outlined here https://mariadb.org/get-involved/getting-started-for-developers/get-code-build-test/

Re: [Maria-discuss] Missing table rows when importing a MySQL 5.7.8 database into MariaDB 10.4.8 database

2020-08-20 Thread andrei . elkin
> > Also I did make a dump of just the table in question and nothing > changed in my results. So I did > mysqldump -u username -pPassword -h remote_hosts my_remote_database > my_table > table_dump.sql > That's better take for analysis. Could you bisect table_dump.sql INSERT's row list to find out

Re: [Maria-discuss] Missing table rows when importing a MySQL 5.7.8 database into MariaDB 10.4.8 database

2020-08-20 Thread Elliot Holden
Thank you for the reply. Yes I tried to take another users advice and do SHOW WARNINGS but I kinda need a little more detail how to do this. See below: How do I check the result of "SHOW WARNINGS"? I did read that I can start the mysql client with --show-warnings but as far as showing the wa

Re: [Maria-discuss] Missing table rows when importing a MySQL 5.7.8 database into MariaDB 10.4.8 database

2020-08-20 Thread andrei . elkin
Elliot, howdy. Thanks for narrating it pretty verbose! I can only suggest to trace or bisect the 600 rows insertion to catch where it fails. Cheers, Andrei > H Andrei, > > Thanks for the reply. To answer your question when I import the my_dump.sql > (yes it does contain > all 600 rows in tha

Re: [Maria-discuss] Missing table rows when importing a MySQL 5.7.8 database into MariaDB 10.4.8 database

2020-08-20 Thread Elliot Holden
H Andrei, Thanks for the reply. To answer your question when I import the *my_dump.sql* (yes it does contain all 600 rows in that dump file) into a database on the MySQL server (which uses *utf8* charset) then all works fine. All 600 rows are imported. But when I used that same *my_dump.sq

Re: [Maria-discuss] Missing table rows when importing a MySQL 5.7.8 database into MariaDB 10.4.8 database

2020-08-20 Thread andrei . elkin
> When I use mysqldump to backup a MySQL 5.7.8 database then import that > database into a MariaDB > 10.4.8 database, at least one (maybe more) of the imported tables is > missing rows. This is a > WordPress database and the table in question is the wp_options table. I'm > only getti