mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00

Removed usage of @r/result as this made life hard when testing different table handlers. Allow concurrent inserts if no update/binary log. Don't remove key_cache at flush tables. Fixed bug in SELECT DISTINCT SUM()...
9 lines
220 B
Plaintext
9 lines
220 B
Plaintext
use test;
|
|
drop table if exists t1;
|
|
create table t1 (
|
|
test_set set( 'val1', 'val2', 'val3' ) not null default '',
|
|
name char(20) default 'O''Brien'
|
|
) comment = 'it\'s a table' ;
|
|
show create table t1 ;
|
|
drop table t1;
|