mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
19 lines
499 B
Text
19 lines
499 B
Text
drop table if exists t1;
|
|
## Creating new table ##
|
|
CREATE TABLE t1
|
|
(
|
|
id INT NOT NULL auto_increment,
|
|
PRIMARY KEY (id),
|
|
name VARCHAR(30)
|
|
);
|
|
'#--------------------FN_DYNVARS_018_01-------------------------#'
|
|
SELECT @@general_log_file;
|
|
@@general_log_file
|
|
mysql-test.log
|
|
INSERT into t1(name) values('Record_1');
|
|
INSERT into t1(name) values('Record_2');
|
|
INSERT into t1(name) values('Record_3');
|
|
INSERT into t1(name) values('Record_4');
|
|
## Verifying general log file ##
|
|
## Dropping table ##
|
|
DROP TABLE t1;
|