mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Changed mysql-test to print warnings for not existing table to DROP TABLE
Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names. changed store_warning() -> push_warning_print()
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
drop table if exists t1;
|
||||
select 0x41,0x41+0,0x41 | 0x7fffffffffffffff | 0,0xffffffffffffffff | 0 ;
|
||||
0x41 0x41+0 0x41 | 0x7fffffffffffffff | 0 0xffffffffffffffff | 0
|
||||
A 65 9223372036854775807 18446744073709551615
|
||||
@@ -7,7 +8,6 @@ select 0x31+1,concat(0x31)+1,-0xf;
|
||||
select x'31',X'ffff'+0;
|
||||
x'31' X'ffff'+0
|
||||
1 65535
|
||||
drop table if exists t1;
|
||||
create table t1 (ID int(8) unsigned zerofill not null auto_increment,UNIQ bigint(21) unsigned zerofill not null,primary key (ID),unique (UNIQ) );
|
||||
insert into t1 set UNIQ=0x38afba1d73e6a18a;
|
||||
insert into t1 set UNIQ=123;
|
||||
|
Reference in New Issue
Block a user