mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
1f6ecc0cd3
Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names. changed store_warning() -> push_warning_print()
17 lines
437 B
Text
17 lines
437 B
Text
#
|
|
# Test keywords as fields
|
|
#
|
|
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
--enable_warnings
|
|
|
|
create table t1 (time time, date date, timestamp timestamp);
|
|
insert into t1 values ("12:22:22","97:02:03","1997-01-02");
|
|
select * from t1;
|
|
select t1.time+0,t1.date+0,t1.timestamp+0,concat(date," ",time) from t1;
|
|
drop table t1;
|
|
create table events(binlog int);
|
|
insert into events values(1);
|
|
select events.binlog from events;
|
|
drop table events;
|