mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Test suites for engine testing, moved from test-extra so will be available
for general use. mysql-test/Makefile.am: Adding directories of additional test suites mysql-test/mysql-stress-test.pl: Adding check for additional errors checking during test run
This commit is contained in:
18
mysql-test/suite/engines/funcs/r/db_use_error.result
Normal file
18
mysql-test/suite/engines/funcs/r/db_use_error.result
Normal file
@ -0,0 +1,18 @@
|
||||
DROP DATABASE IF EXISTS d6;
|
||||
CREATE DATABASE d6;
|
||||
SHOW DATABASES;
|
||||
Database
|
||||
information_schema
|
||||
d6
|
||||
mtr
|
||||
mysql
|
||||
test
|
||||
USE DATABASE nond6;
|
||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATABASE nond6' at line 1
|
||||
DROP DATABASE d6;
|
||||
SHOW DATABASES;
|
||||
Database
|
||||
information_schema
|
||||
mtr
|
||||
mysql
|
||||
test
|
Reference in New Issue
Block a user