Use double quotes with check_maxctrl

The command doesn't seem to like single quotes and wildcards.
This commit is contained in:
Markus Mäkelä
2019-06-19 15:57:44 +03:00
parent 2bd614ce8e
commit 0ff065c4eb

View File

@ -103,7 +103,7 @@ void alter_schemarouter(TestConnections& test)
test.expect(!conn.query("SELECT 1"), "Query before reconfiguration should fail");
conn.disconnect();
test.check_maxctrl("alter service SchemaRouter ignore_databases_regex '.*'");
test.check_maxctrl("alter service SchemaRouter ignore_databases_regex \".*\"");
conn.connect();
test.expect(conn.query("SELECT 1"), "Query after reconfiguration should work: %s", conn.error());