Fix test failures

Use larger BLOB type for mxs812_1, the inserted value exceeds the normal
BLOB size.

Add a baseline check into bulk_insert to verify that direct connections
work (at the moment they don't, needs an investigation).

Updated parameter names in failover_mysqlmon_mrm.

Modified avro_alter to prevent data type conversion errors.
This commit is contained in:
Markus Mäkelä
2017-12-04 16:07:50 +02:00
parent c03ce7ac7f
commit 9f11fdd2c1
4 changed files with 16 additions and 3 deletions

View File

@ -67,7 +67,7 @@ int main(int argc, char *argv[])
/** Create test table */
Test->repl->connect();
Test->try_query(Test->repl->nodes[0], (char*)"DROP TABLE IF EXISTS long_blob_table");
Test->try_query(Test->repl->nodes[0], (char*)"CREATE TABLE long_blob_table(x INT, b BLOB)");
Test->try_query(Test->repl->nodes[0], (char*)"CREATE TABLE long_blob_table(x INT, b LONGBLOB)");
Test->connect_maxscale();
Test->tprintf("Starting test");