Commit 4515a6d3 authored by Nirbhay Choubey's avatar Nirbhay Choubey

MDEV#6148 : Updating auto_increment_offset_func.result.

parent 29466e2c
...@@ -144,8 +144,8 @@ id name ...@@ -144,8 +144,8 @@ id name
125 Record_12 125 Record_12
134 Record_13 134 Record_13
140 Record_14 140 Record_14
141 Record_15 150 Record_15
142 Record_16 160 Record_16
## Changing datatype of column id with primary key to BigInt ## ## Changing datatype of column id with primary key to BigInt ##
ALTER table t1 modify id BIGINT NOT NULL auto_increment; ALTER table t1 modify id BIGINT NOT NULL auto_increment;
INSERT into t1(name) values('Record_17'); INSERT into t1(name) values('Record_17');
...@@ -166,10 +166,10 @@ id name ...@@ -166,10 +166,10 @@ id name
125 Record_12 125 Record_12
134 Record_13 134 Record_13
140 Record_14 140 Record_14
141 Record_15 150 Record_15
142 Record_16 160 Record_16
143 Record_17 170 Record_17
144 Record_18 180 Record_18
'#--------------------FN_DYNVARS_002_07-------------------------#' '#--------------------FN_DYNVARS_002_07-------------------------#'
## Assigning -ve value to variable ## ## Assigning -ve value to variable ##
SET @@auto_increment_offset = -10; SET @@auto_increment_offset = -10;
...@@ -196,12 +196,12 @@ id name ...@@ -196,12 +196,12 @@ id name
125 Record_12 125 Record_12
134 Record_13 134 Record_13
140 Record_14 140 Record_14
141 Record_15 150 Record_15
142 Record_16 160 Record_16
143 Record_17 170 Record_17
144 Record_18 180 Record_18
145 Record_17 181 Record_17
146 Record_18 191 Record_18
## Assigning value that is out of range of variable ## ## Assigning value that is out of range of variable ##
SET @@auto_increment_offset = 65536; SET @@auto_increment_offset = 65536;
Warnings: Warnings:
...@@ -229,16 +229,16 @@ id name ...@@ -229,16 +229,16 @@ id name
125 Record_12 125 Record_12
134 Record_13 134 Record_13
140 Record_14 140 Record_14
141 Record_15 150 Record_15
142 Record_16 160 Record_16
143 Record_17 170 Record_17
144 Record_18 180 Record_18
145 Record_17 181 Record_17
146 Record_18 191 Record_18
147 Record_17 199 Record_17
148 Record_18 209 Record_18
149 Record_19 219 Record_19
150 Record_20 229 Record_20
## No effect of auto_increment_offset since value of this variable is greater ## ## No effect of auto_increment_offset since value of this variable is greater ##
## than auto_increment_increment ## ## than auto_increment_increment ##
## Dropping table ## ## Dropping table ##
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment