mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
11 lines
No EOL
244 B
Text
11 lines
No EOL
244 B
Text
--disable_warnings
|
|
drop table if exists t1;
|
|
--enable_warnings
|
|
|
|
create table t (a int not null);
|
|
insert into t values (1),(2),(3);
|
|
|
|
SELECT SQL_NO_FCACHE SLEEP(0);
|
|
SELECT /*!40001 SQL_NO_CACHE */ /*!50084 SQL_NO_FCACHE */ * FROM t;
|
|
|
|
DROP TABLE t; |