mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
client/mysqlmanagerc.c
added support for quiet increased line buffer size client/mysqltest.c fixed memory leak added query logging to result file added error message logging to result file added enable_query_log/disable_query_log mysql-test/mysql-test-run.sh converted tests to use mysqlmanager Updated test results
This commit is contained in:
@ -1,11 +1,48 @@
|
||||
drop table if exists t1;
|
||||
drop table if exists t1;
|
||||
drop table t1;
|
||||
Unknown table 't1'
|
||||
create table t1(n int);
|
||||
insert into t1 values(1);
|
||||
create temporary table t1( n int);
|
||||
insert into t1 values(2);
|
||||
create table t1(n int);
|
||||
Table 't1' already exists
|
||||
drop table t1;
|
||||
select * from t1;
|
||||
n
|
||||
1
|
||||
drop database if exists foo;
|
||||
create database foo;
|
||||
drop database if exists foo;
|
||||
create database foo;
|
||||
create table foo.foo (n int);
|
||||
insert into foo.foo values (4);
|
||||
select * from foo.foo;
|
||||
n
|
||||
4
|
||||
drop database if exists foo;
|
||||
create database foo;
|
||||
drop database foo;
|
||||
drop database if exists foo;
|
||||
flush tables with read lock;
|
||||
create database foo;
|
||||
Can't execute the query because you have a conflicting read lock
|
||||
unlock tables;
|
||||
create database foo;
|
||||
show databases;
|
||||
Database
|
||||
foo
|
||||
mysql
|
||||
test
|
||||
flush tables with read lock;
|
||||
drop database foo;
|
||||
Can't execute the query because you have a conflicting read lock
|
||||
unlock tables;
|
||||
drop database foo;
|
||||
show databases;
|
||||
Database
|
||||
mysql
|
||||
test
|
||||
drop database foo;
|
||||
Can't drop database 'foo'. Database doesn't exist
|
||||
|
Reference in New Issue
Block a user