summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2018-01-16 17:04:14 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2018-01-16 17:04:14 +0000
commitbf0f389a2904ec7a86781561d866af3a1ae2d040 (patch)
tree47db6908c4aee3c64e783ca3c6f1311a8e390741 /test
parent753b36c5b318d156d9ee56808ea1a6393a5286c5 (diff)
Testsuite: MySQL portability
Pre-version-10.1.3 MariaDB has no "IF NOT EXISTS" on "CREATE USER"
Diffstat (limited to 'test')
-rw-r--r--test/scripts/2610-MySQL/261014
1 files changed, 12 insertions, 2 deletions
diff --git a/test/scripts/2610-MySQL/2610 b/test/scripts/2610-MySQL/2610
index e59c80822..d160db270 100644
--- a/test/scripts/2610-MySQL/2610
+++ b/test/scripts/2610-MySQL/2610
@@ -17,6 +17,17 @@ mysqld_safe --datadir=DIR/mysql --log-error=DIR/mysql/log --port=PORT_N --socket
# wait for db startup, insert some data
perl
system 'mysqladmin --protocol=TCP -P PORT_N --connect_timeout=1 --wait=5 -u root create test';
+my $fh;
+open($fh, '-|', 'mysql --protocol=TCP -P PORT_N -u root -D test -e "select 1 from mysql.user where User = \'root\' and Host = \'HOSTIPV4\'"');
+my $line = <$fh>;
+if (length($line) == 0) {
+ system 'mysql --protocol=TCP -P PORT_N -u root -D test -e "create user \'root\'@\'HOSTIPV4\'"';
+}
+open($fh, '-|', 'mysql --protocol=TCP -P PORT_N -u root -D test -e "select 1 from mysql.user where User = \'CALLER\' and Host = \'HOSTIPV4\'"');
+$line = <$fh>;
+if (length($line) == 0) {
+ system 'mysql --protocol=TCP -P PORT_N -u root -D test -e "create user \'CALLER\'@\'HOSTIPV4\'"';
+}
system 'mysql --protocol=TCP -P PORT_N -u root -D test \
-e "CREATE TABLE them ( name text, id text ); \
INSERT INTO them VALUES ( \'Philip Hazel\', \'ph10\' ); \
@@ -26,7 +37,6 @@ system 'mysql --protocol=TCP -P PORT_N -u root -D test \
INSERT INTO them VALUES ( CONCAT(\'before\', CHAR(13), CHAR(10), \'after\'), \'newline\' ); \
INSERT INTO them VALUES ( CONCAT(\'x\', CHAR(9), \'x\'), \'tab\' ); \
INSERT INTO them VALUES ( CONCAT(CHAR(39), \'stquot\'), \'quote1\' ); \
- CREATE USER IF NOT EXISTS \'root\'@\'HOSTIPV4\', \'CALLER\'@\'HOSTIPV4\'; \
GRANT ALL ON *.* TO \'root\'@\'HOSTIPV4\'; \
GRANT ALL ON *.* TO \'CALLER\'@\'HOSTIPV4\'; \
"';
@@ -69,4 +79,4 @@ perl
system 'mysqladmin --protocol=TCP -P PORT_N -u root shutdown';
****
killdaemon
-sudo rm -fr DIR/mysql
+#sudo rm -fr DIR/mysql