mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
30 lines
916 B
Text
30 lines
916 B
Text
drop table if exists t1;
|
|
## Creating new table t1 ##
|
|
CREATE TABLE t1
|
|
(
|
|
id INT NOT NULL auto_increment,
|
|
PRIMARY KEY (id),
|
|
name VARCHAR(30)
|
|
);
|
|
'#--------------------FN_DYNVARS_052_01-------------------------#'
|
|
## Setting initial value of variable to 1 ##
|
|
SET @@global.interactive_timeout = 1;
|
|
## Creating new interactive connection test_con1 ##
|
|
## Inserting record in table ##
|
|
INSERT into t1(name) values('Record_1');
|
|
## Setting session value of interactive_timeout ##
|
|
SET @@session.interactive_timeout = 1;
|
|
## Verifying values of variable ##
|
|
SELECT @@session.interactive_timeout;
|
|
@@session.interactive_timeout
|
|
1
|
|
SELECT @@global.interactive_timeout;
|
|
@@global.interactive_timeout
|
|
1
|
|
## Using sleep to check timeout ##
|
|
SELECT * from t1;
|
|
id name
|
|
1 Record_1
|
|
'Bug#35377: Error should appear here because interactive_timeout value';
|
|
'is 1 and connection remains idle for 5 secs';
|
|
INSERT into t1(name) values('Record_2');
|