Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e5145a5a
Commit
e5145a5a
authored
May 24, 2017
by
Alexander Barkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-12546 Wrong metadata or data type for string user variables
parent
90f06818
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
900 additions
and
833 deletions
+900
-833
mysql-test/r/last_value.result
mysql-test/r/last_value.result
+4
-4
mysql-test/r/metadata.result
mysql-test/r/metadata.result
+30
-0
mysql-test/r/ps_2myisam.result
mysql-test/r/ps_2myisam.result
+136
-136
mysql-test/r/ps_3innodb.result
mysql-test/r/ps_3innodb.result
+136
-136
mysql-test/r/ps_4heap.result
mysql-test/r/ps_4heap.result
+136
-136
mysql-test/r/ps_5merge.result
mysql-test/r/ps_5merge.result
+272
-272
mysql-test/suite/maria/ps_maria.result
mysql-test/suite/maria/ps_maria.result
+136
-136
mysql-test/t/metadata.test
mysql-test/t/metadata.test
+18
-0
sql/item.h
sql/item.h
+9
-0
sql/item_func.cc
sql/item_func.cc
+21
-3
sql/item_func.h
sql/item_func.h
+2
-10
No files found.
mysql-test/r/last_value.result
View file @
e5145a5a
...
@@ -21,7 +21,7 @@ a b c d
...
@@ -21,7 +21,7 @@ a b c d
DROP TABLE t1;
DROP TABLE t1;
SELECT LAST_VALUE(@last_a:=1,@last_b:=1);
SELECT LAST_VALUE(@last_a:=1,@last_b:=1);
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def LAST_VALUE(@last_a:=1,@last_b:=1)
8
1 1 N 32897 0 63
def LAST_VALUE(@last_a:=1,@last_b:=1)
3
1 1 N 32897 0 63
LAST_VALUE(@last_a:=1,@last_b:=1)
LAST_VALUE(@last_a:=1,@last_b:=1)
1
1
select @last_b;
select @last_b;
...
@@ -46,7 +46,7 @@ LAST_VALUE(@last_a:=1,@last_b:="hello")
...
@@ -46,7 +46,7 @@ LAST_VALUE(@last_a:=1,@last_b:="hello")
hello
hello
select @last_b;
select @last_b;
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def @last_b 25
0
16777215 5 Y 0 39 8
def @last_b 25
1
16777215 5 Y 0 39 8
@last_b
@last_b
hello
hello
SELECT date(LAST_VALUE(@last_a:=1,@last_b:="2001-02-03"));
SELECT date(LAST_VALUE(@last_a:=1,@last_b:="2001-02-03"));
...
@@ -56,7 +56,7 @@ date(LAST_VALUE(@last_a:=1,@last_b:="2001-02-03"))
...
@@ -56,7 +56,7 @@ date(LAST_VALUE(@last_a:=1,@last_b:="2001-02-03"))
2001-02-03
2001-02-03
select @last_b;
select @last_b;
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def @last_b 25
0
16777215 10 Y 0 39 8
def @last_b 25
1
16777215 10 Y 0 39 8
@last_b
@last_b
2001-02-03
2001-02-03
SELECT LAST_VALUE(@last_a:=1,@last_b:="2001-02-03",NULL);
SELECT LAST_VALUE(@last_a:=1,@last_b:="2001-02-03",NULL);
...
@@ -66,7 +66,7 @@ LAST_VALUE(@last_a:=1,@last_b:="2001-02-03",NULL)
...
@@ -66,7 +66,7 @@ LAST_VALUE(@last_a:=1,@last_b:="2001-02-03",NULL)
NULL
NULL
select @last_b;
select @last_b;
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def @last_b 25
0
16777215 10 Y 0 39 8
def @last_b 25
1
16777215 10 Y 0 39 8
@last_b
@last_b
2001-02-03
2001-02-03
SELECT LAST_VALUE();
SELECT LAST_VALUE();
...
...
mysql-test/r/metadata.result
View file @
e5145a5a
...
@@ -772,3 +772,33 @@ def ROUND(11111111) 3 8 0 N 32897 0 63
...
@@ -772,3 +772,33 @@ def ROUND(11111111) 3 8 0 N 32897 0 63
def ROUND(111111111) 3 9 0 N 32897 0 63
def ROUND(111111111) 3 9 0 N 32897 0 63
def ROUND(1111111111) 8 10 0 N 32897 0 63
def ROUND(1111111111) 8 10 0 N 32897 0 63
ROUND(1) ROUND(11) ROUND(111) ROUND(1111) ROUND(11111) ROUND(111111) ROUND(1111111) ROUND(11111111) ROUND(111111111) ROUND(1111111111)
ROUND(1) ROUND(11) ROUND(111) ROUND(1111) ROUND(11111) ROUND(111111) ROUND(1111111) ROUND(11111111) ROUND(111111111) ROUND(1111111111)
#
# MDEV-12546 Wrong metadata or data type for string user variables
#
SET @a='test';
SELECT @a;
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def @a 251 16777215 4 Y 0 39 8
@a
test
CREATE TABLE t1 AS SELECT @a;
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`@a` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
DROP TABLE t1;
SELECT @b1:=10, @b2:=@b2:=111111111111;
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def @b1:=10 3 2 2 N 32897 0 63
def @b2:=@b2:=111111111111 8 12 12 N 32897 0 63
@b1:=10 @b2:=@b2:=111111111111
10 111111111111
CREATE TABLE t1 AS SELECT @b1:=10, @b2:=111111111111;
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`@b1:=10` int(2) NOT NULL,
`@b2:=111111111111` bigint(12) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
DROP TABLE t1;
mysql-test/r/ps_2myisam.result
View file @
e5145a5a
...
@@ -1932,26 +1932,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -1932,26 +1932,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
...
@@ -1979,26 +1979,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -1979,26 +1979,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select
prepare stmt1 from "select
...
@@ -2029,26 +2029,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2029,26 +2029,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -2069,26 +2069,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2069,26 +2069,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
...
@@ -2117,26 +2117,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2117,26 +2117,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -2161,26 +2161,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2161,26 +2161,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -2207,26 +2207,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2207,26 +2207,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -2245,26 +2245,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2245,26 +2245,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
...
...
mysql-test/r/ps_3innodb.result
View file @
e5145a5a
...
@@ -1915,26 +1915,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -1915,26 +1915,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
...
@@ -1962,26 +1962,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -1962,26 +1962,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select
prepare stmt1 from "select
...
@@ -2012,26 +2012,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2012,26 +2012,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -2052,26 +2052,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2052,26 +2052,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
...
@@ -2100,26 +2100,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2100,26 +2100,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -2144,26 +2144,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2144,26 +2144,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -2190,26 +2190,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2190,26 +2190,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -2228,26 +2228,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2228,26 +2228,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
...
...
mysql-test/r/ps_4heap.result
View file @
e5145a5a
...
@@ -1916,26 +1916,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -1916,26 +1916,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 0 39 8
def @arg23 25
1
16777215 8 Y 0 39 8
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 0 39 8
def @arg25 25
1
16777215 4 Y 0 39 8
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 0 39 8
def @arg27 25
1
16777215 10 Y 0 39 8
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 0 39 8
def @arg29 25
1
16777215 8 Y 0 39 8
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
...
@@ -1963,26 +1963,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -1963,26 +1963,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 0 39 8
def @arg23 25
1
16777215 0 Y 0 39 8
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 0 39 8
def @arg25 25
1
16777215 0 Y 0 39 8
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 0 39 8
def @arg27 25
1
16777215 0 Y 0 39 8
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 0 39 8
def @arg29 25
1
16777215 0 Y 0 39 8
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select
prepare stmt1 from "select
...
@@ -2013,26 +2013,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2013,26 +2013,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 0 39 8
def @arg23 25
1
16777215 8 Y 0 39 8
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 0 39 8
def @arg25 25
1
16777215 4 Y 0 39 8
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 0 39 8
def @arg27 25
1
16777215 10 Y 0 39 8
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 0 39 8
def @arg29 25
1
16777215 8 Y 0 39 8
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -2053,26 +2053,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2053,26 +2053,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 0 39 8
def @arg23 25
1
16777215 0 Y 0 39 8
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 0 39 8
def @arg25 25
1
16777215 0 Y 0 39 8
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 0 39 8
def @arg27 25
1
16777215 0 Y 0 39 8
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 0 39 8
def @arg29 25
1
16777215 0 Y 0 39 8
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
...
@@ -2101,26 +2101,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2101,26 +2101,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 0 39 8
def @arg23 25
1
16777215 8 Y 0 39 8
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 0 39 8
def @arg25 25
1
16777215 4 Y 0 39 8
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 0 39 8
def @arg27 25
1
16777215 10 Y 0 39 8
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 0 39 8
def @arg29 25
1
16777215 8 Y 0 39 8
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -2145,26 +2145,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2145,26 +2145,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 0 39 8
def @arg23 25
1
16777215 0 Y 0 39 8
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 0 39 8
def @arg25 25
1
16777215 0 Y 0 39 8
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 0 39 8
def @arg27 25
1
16777215 0 Y 0 39 8
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 0 39 8
def @arg29 25
1
16777215 0 Y 0 39 8
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -2191,26 +2191,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2191,26 +2191,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 0 39 8
def @arg23 25
1
16777215 8 Y 0 39 8
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 0 39 8
def @arg25 25
1
16777215 4 Y 0 39 8
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 0 39 8
def @arg27 25
1
16777215 10 Y 0 39 8
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 0 39 8
def @arg29 25
1
16777215 8 Y 0 39 8
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -2229,26 +2229,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2229,26 +2229,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 0 39 8
def @arg23 25
1
16777215 0 Y 0 39 8
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 0 39 8
def @arg25 25
1
16777215 0 Y 0 39 8
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 0 39 8
def @arg27 25
1
16777215 0 Y 0 39 8
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 0 39 8
def @arg29 25
1
16777215 0 Y 0 39 8
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
...
...
mysql-test/r/ps_5merge.result
View file @
e5145a5a
...
@@ -1853,26 +1853,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -1853,26 +1853,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
...
@@ -1900,26 +1900,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -1900,26 +1900,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select
prepare stmt1 from "select
...
@@ -1950,26 +1950,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -1950,26 +1950,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -1990,26 +1990,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -1990,26 +1990,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
...
@@ -2038,26 +2038,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2038,26 +2038,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -2082,26 +2082,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2082,26 +2082,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -2128,26 +2128,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2128,26 +2128,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -2166,26 +2166,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2166,26 +2166,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
...
@@ -5221,26 +5221,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -5221,26 +5221,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
...
@@ -5268,26 +5268,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -5268,26 +5268,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select
prepare stmt1 from "select
...
@@ -5318,26 +5318,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -5318,26 +5318,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -5358,26 +5358,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -5358,26 +5358,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
...
@@ -5406,26 +5406,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -5406,26 +5406,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -5450,26 +5450,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -5450,26 +5450,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -5496,26 +5496,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -5496,26 +5496,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -5534,26 +5534,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -5534,26 +5534,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
...
...
mysql-test/suite/maria/ps_maria.result
View file @
e5145a5a
...
@@ -1932,26 +1932,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -1932,26 +1932,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
select @arg01:= c1, @arg02:= c2, @arg03:= c3, @arg04:= c4,
...
@@ -1979,26 +1979,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -1979,26 +1979,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select
prepare stmt1 from "select
...
@@ -2029,26 +2029,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2029,26 +2029,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -2069,26 +2069,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2069,26 +2069,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
prepare stmt1 from "select ? := c1 from t9 where c1= 1" ;
...
@@ -2117,26 +2117,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2117,26 +2117,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -2161,26 +2161,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2161,26 +2161,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
prepare stmt1 from "select c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12,
...
@@ -2207,26 +2207,26 @@ def @arg09 5 23 1 Y 32896 31 63
...
@@ -2207,26 +2207,26 @@ def @arg09 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg10 5 23 1 Y 32896 31 63
def @arg11 246 83 6 Y 32896 38 63
def @arg11 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg12 246 83 6 Y 32896 38 63
def @arg13 25
0
16777215 10 Y 0 39 8
def @arg13 25
1
16777215 10 Y 0 39 8
def @arg14 25
0
16777215 19 Y 0 39 8
def @arg14 25
1
16777215 19 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 8 Y 0 39 8
def @arg16 25
1
16777215 8 Y 0 39 8
def @arg17 8 20 4 Y 32928 0 63
def @arg17 8 20 4 Y 32928 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg18 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg19 8 20 1 Y 32896 0 63
def @arg20 25
0
16777215 1 Y 0 39 8
def @arg20 25
1
16777215 1 Y 0 39 8
def @arg21 25
0
16777215 10 Y 0 39 8
def @arg21 25
1
16777215 10 Y 0 39 8
def @arg22 25
0
16777215 30 Y 0 39 8
def @arg22 25
1
16777215 30 Y 0 39 8
def @arg23 25
0
16777215 8 Y 128 39 63
def @arg23 25
1
16777215 8 Y 128 39 63
def @arg24 25
0
16777215 8 Y 0 39 8
def @arg24 25
1
16777215 8 Y 0 39 8
def @arg25 25
0
16777215 4 Y 128 39 63
def @arg25 25
1
16777215 4 Y 128 39 63
def @arg26 25
0
16777215 4 Y 0 39 8
def @arg26 25
1
16777215 4 Y 0 39 8
def @arg27 25
0
16777215 10 Y 128 39 63
def @arg27 25
1
16777215 10 Y 128 39 63
def @arg28 25
0
16777215 10 Y 0 39 8
def @arg28 25
1
16777215 10 Y 0 39 8
def @arg29 25
0
16777215 8 Y 128 39 63
def @arg29 25
1
16777215 8 Y 128 39 63
def @arg30 25
0
16777215 8 Y 0 39 8
def @arg30 25
1
16777215 8 Y 0 39 8
def @arg31 25
0
16777215 3 Y 0 39 8
def @arg31 25
1
16777215 3 Y 0 39 8
def @arg32 25
0
16777215 6 Y 0 39 8
def @arg32 25
1
16777215 6 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
1 1 1 1 1 1 1 1 1 1 1.0000 1.0000 2004-02-29 2004-02-29 11:11:11 2004-02-29 11:11:11 11:11:11 2004 1 1 a 123456789a 123456789a123456789b123456789c tinyblob tinytext blob text mediumblob mediumtext longblob longtext one monday
set @my_key= 0 ;
set @my_key= 0 ;
...
@@ -2245,26 +2245,26 @@ def @arg09 5 23 0 Y 32896 31 63
...
@@ -2245,26 +2245,26 @@ def @arg09 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg10 5 23 0 Y 32896 31 63
def @arg11 246 83 0 Y 32896 38 63
def @arg11 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg12 246 83 0 Y 32896 38 63
def @arg13 25
0
16777215 0 Y 0 39 8
def @arg13 25
1
16777215 0 Y 0 39 8
def @arg14 25
0
16777215 0 Y 0 39 8
def @arg14 25
1
16777215 0 Y 0 39 8
def @arg15 25
0
16777215 19 Y 0 39 8
def @arg15 25
1
16777215 19 Y 0 39 8
def @arg16 25
0
16777215 0 Y 0 39 8
def @arg16 25
1
16777215 0 Y 0 39 8
def @arg17 8 20 0 Y 32928 0 63
def @arg17 8 20 0 Y 32928 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg18 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg19 8 20 0 Y 32896 0 63
def @arg20 25
0
16777215 0 Y 0 39 8
def @arg20 25
1
16777215 0 Y 0 39 8
def @arg21 25
0
16777215 0 Y 0 39 8
def @arg21 25
1
16777215 0 Y 0 39 8
def @arg22 25
0
16777215 0 Y 0 39 8
def @arg22 25
1
16777215 0 Y 0 39 8
def @arg23 25
0
16777215 0 Y 128 39 63
def @arg23 25
1
16777215 0 Y 128 39 63
def @arg24 25
0
16777215 0 Y 0 39 8
def @arg24 25
1
16777215 0 Y 0 39 8
def @arg25 25
0
16777215 0 Y 128 39 63
def @arg25 25
1
16777215 0 Y 128 39 63
def @arg26 25
0
16777215 0 Y 0 39 8
def @arg26 25
1
16777215 0 Y 0 39 8
def @arg27 25
0
16777215 0 Y 128 39 63
def @arg27 25
1
16777215 0 Y 128 39 63
def @arg28 25
0
16777215 0 Y 0 39 8
def @arg28 25
1
16777215 0 Y 0 39 8
def @arg29 25
0
16777215 0 Y 128 39 63
def @arg29 25
1
16777215 0 Y 128 39 63
def @arg30 25
0
16777215 0 Y 0 39 8
def @arg30 25
1
16777215 0 Y 0 39 8
def @arg31 25
0
16777215 0 Y 0 39 8
def @arg31 25
1
16777215 0 Y 0 39 8
def @arg32 25
0
16777215 0 Y 0 39 8
def @arg32 25
1
16777215 0 Y 0 39 8
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
@arg01 @arg02 @arg03 @arg04 @arg05 @arg06 @arg07 @arg08 @arg09 @arg10 @arg11 @arg12 @arg13 @arg14 @arg15 @arg16 @arg17 @arg18 @arg19 @arg20 @arg21 @arg22 @arg23 @arg24 @arg25 @arg26 @arg27 @arg28 @arg29 @arg30 @arg31 @arg32
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
0 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 1991-01-01 01:01:01 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
...
...
mysql-test/t/metadata.test
View file @
e5145a5a
...
@@ -465,3 +465,21 @@ SELECT
...
@@ -465,3 +465,21 @@ SELECT
ROUND
(
1111111111
)
LIMIT
0
;
ROUND
(
1111111111
)
LIMIT
0
;
--
disable_metadata
--
disable_metadata
--
echo
#
--
echo
# MDEV-12546 Wrong metadata or data type for string user variables
--
echo
#
SET
@
a
=
'test'
;
--
enable_metadata
SELECT
@
a
;
--
disable_metadata
CREATE
TABLE
t1
AS
SELECT
@
a
;
SHOW
CREATE
TABLE
t1
;
DROP
TABLE
t1
;
--
enable_metadata
SELECT
@
b1
:=
10
,
@
b2
:=@
b2
:=
111111111111
;
--
disable_metadata
CREATE
TABLE
t1
AS
SELECT
@
b1
:=
10
,
@
b2
:=
111111111111
;
SHOW
CREATE
TABLE
t1
;
DROP
TABLE
t1
;
sql/item.h
View file @
e5145a5a
...
@@ -566,6 +566,15 @@ class Item: public Value_source,
...
@@ -566,6 +566,15 @@ class Item: public Value_source,
SEL_TREE
*
get_mm_tree_for_const
(
RANGE_OPT_PARAM
*
param
);
SEL_TREE
*
get_mm_tree_for_const
(
RANGE_OPT_PARAM
*
param
);
/**
Create a field based on the exact data type handler.
*/
Field
*
create_table_field_from_handler
(
TABLE
*
table
)
{
const
Type_handler
*
h
=
type_handler
();
return
h
->
make_and_init_table_field
(
&
name
,
Record_addr
(
maybe_null
),
*
this
,
table
);
}
/**
/**
Create a field based on field_type of argument.
Create a field based on field_type of argument.
This is used to create a field for
This is used to create a field for
...
...
sql/item_func.cc
View file @
e5145a5a
...
@@ -4351,8 +4351,27 @@ bool Item_func_set_user_var::fix_fields(THD *thd, Item **ref)
...
@@ -4351,8 +4351,27 @@ bool Item_func_set_user_var::fix_fields(THD *thd, Item **ref)
m_var_entry
->
set_charset
(
args
[
0
]
->
collation
.
derivation
==
DERIVATION_NUMERIC
?
m_var_entry
->
set_charset
(
args
[
0
]
->
collation
.
derivation
==
DERIVATION_NUMERIC
?
default_charset
()
:
args
[
0
]
->
collation
.
collation
);
default_charset
()
:
args
[
0
]
->
collation
.
collation
);
collation
.
set
(
m_var_entry
->
charset
(),
DERIVATION_IMPLICIT
);
collation
.
set
(
m_var_entry
->
charset
(),
DERIVATION_IMPLICIT
);
set_handler_by_result_type
(
args
[
0
]
->
result_type
(),
switch
(
args
[
0
]
->
result_type
())
{
max_length
,
collation
.
collation
);
case
STRING_RESULT
:
case
TIME_RESULT
:
set_handler
(
type_handler_long_blob
.
type_handler_adjusted_to_max_octet_length
(
max_length
,
collation
.
collation
));
break
;
case
REAL_RESULT
:
set_handler
(
&
type_handler_double
);
break
;
case
INT_RESULT
:
set_handler
(
Type_handler
::
type_handler_long_or_longlong
(
max_char_length
()));
break
;
case
DECIMAL_RESULT
:
set_handler
(
&
type_handler_newdecimal
);
break
;
case
ROW_RESULT
:
DBUG_ASSERT
(
0
);
set_handler
(
&
type_handler_row
);
break
;
}
if
(
thd
->
lex
->
current_select
)
if
(
thd
->
lex
->
current_select
)
{
{
/*
/*
...
@@ -5258,7 +5277,6 @@ void Item_func_get_user_var::fix_length_and_dec()
...
@@ -5258,7 +5277,6 @@ void Item_func_get_user_var::fix_length_and_dec()
break
;
break
;
case
STRING_RESULT
:
case
STRING_RESULT
:
max_length
=
MAX_BLOB_WIDTH
-
1
;
max_length
=
MAX_BLOB_WIDTH
-
1
;
set_handler
(
&
type_handler_medium_blob
);
break
;
break
;
case
DECIMAL_RESULT
:
case
DECIMAL_RESULT
:
fix_char_length
(
DECIMAL_MAX_STR_LENGTH
);
fix_char_length
(
DECIMAL_MAX_STR_LENGTH
);
...
...
sql/item_func.h
View file @
e5145a5a
...
@@ -2242,9 +2242,9 @@ class Item_func_user_var :public Item_hybrid_func
...
@@ -2242,9 +2242,9 @@ class Item_func_user_var :public Item_hybrid_func
:
Item_hybrid_func
(
thd
,
item
),
:
Item_hybrid_func
(
thd
,
item
),
m_var_entry
(
item
->
m_var_entry
),
name
(
item
->
name
)
{
}
m_var_entry
(
item
->
m_var_entry
),
name
(
item
->
name
)
{
}
Field
*
create_tmp_field
(
bool
group
,
TABLE
*
table
)
Field
*
create_tmp_field
(
bool
group
,
TABLE
*
table
)
{
return
Item
::
create_tmp_field
(
group
,
table
);
}
{
return
create_table_field_from_handler
(
table
);
}
Field
*
create_field_for_create_select
(
TABLE
*
table
)
Field
*
create_field_for_create_select
(
TABLE
*
table
)
{
return
Item
::
create_field_for_create_select
(
table
);
}
{
return
create_table_field_from_handler
(
table
);
}
bool
check_vcol_func_processor
(
void
*
arg
);
bool
check_vcol_func_processor
(
void
*
arg
);
};
};
...
@@ -2347,14 +2347,6 @@ class Item_func_get_user_var :public Item_func_user_var,
...
@@ -2347,14 +2347,6 @@ class Item_func_get_user_var :public Item_func_user_var,
my_decimal
*
val_decimal
(
my_decimal
*
);
my_decimal
*
val_decimal
(
my_decimal
*
);
String
*
val_str
(
String
*
str
);
String
*
val_str
(
String
*
str
);
void
fix_length_and_dec
();
void
fix_length_and_dec
();
Field
*
create_field_for_create_select
(
TABLE
*
table
)
{
return
Type_handler_hybrid_field_type
::
cmp_type
()
==
STRING_RESULT
?
type_handler_long_blob
.
make_and_init_table_field
(
&
(
Item
::
name
),
Record_addr
(
maybe_null
),
*
this
,
table
)
:
create_tmp_field
(
false
,
table
);
}
virtual
void
print
(
String
*
str
,
enum_query_type
query_type
);
virtual
void
print
(
String
*
str
,
enum_query_type
query_type
);
/*
/*
We must always return variables as strings to guard against selects of type
We must always return variables as strings to guard against selects of type
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment