mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
2f3cfff0a2
Fix for ctypes on windows Cleanup max_queries_per_hour
9 lines
126 B
Text
9 lines
126 B
Text
drop table if exists t1;
|
|
create table t1 (n int);
|
|
insert into t1 values (1),(2),(3);
|
|
select * from t1;
|
|
n
|
|
1
|
|
2
|
|
3
|
|
drop table t1;
|