Commit e5145a5a authored by Alexander Barkov's avatar Alexander Barkov

MDEV-12546 Wrong metadata or data type for string user variables

parent 90f06818
...@@ -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 250 16777215 5 Y 0 39 8 def @last_b 251 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 250 16777215 10 Y 0 39 8 def @last_b 251 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 250 16777215 10 Y 0 39 8 def @last_b 251 16777215 10 Y 0 39 8
@last_b @last_b
2001-02-03 2001-02-03
SELECT LAST_VALUE(); SELECT LAST_VALUE();
......
...@@ -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;
...@@ -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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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" ;
......
...@@ -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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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" ;
......
...@@ -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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 0 39 8 def @arg23 251 16777215 8 Y 0 39 8
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 0 39 8 def @arg25 251 16777215 4 Y 0 39 8
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 0 39 8 def @arg27 251 16777215 10 Y 0 39 8
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 0 39 8 def @arg29 251 16777215 8 Y 0 39 8
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 0 39 8 def @arg23 251 16777215 0 Y 0 39 8
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 0 39 8 def @arg25 251 16777215 0 Y 0 39 8
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 0 39 8 def @arg27 251 16777215 0 Y 0 39 8
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 0 39 8 def @arg29 251 16777215 0 Y 0 39 8
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 0 39 8 def @arg23 251 16777215 8 Y 0 39 8
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 0 39 8 def @arg25 251 16777215 4 Y 0 39 8
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 0 39 8 def @arg27 251 16777215 10 Y 0 39 8
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 0 39 8 def @arg29 251 16777215 8 Y 0 39 8
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 0 39 8 def @arg23 251 16777215 0 Y 0 39 8
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 0 39 8 def @arg25 251 16777215 0 Y 0 39 8
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 0 39 8 def @arg27 251 16777215 0 Y 0 39 8
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 0 39 8 def @arg29 251 16777215 0 Y 0 39 8
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 0 39 8 def @arg23 251 16777215 8 Y 0 39 8
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 0 39 8 def @arg25 251 16777215 4 Y 0 39 8
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 0 39 8 def @arg27 251 16777215 10 Y 0 39 8
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 0 39 8 def @arg29 251 16777215 8 Y 0 39 8
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 0 39 8 def @arg23 251 16777215 0 Y 0 39 8
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 0 39 8 def @arg25 251 16777215 0 Y 0 39 8
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 0 39 8 def @arg27 251 16777215 0 Y 0 39 8
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 0 39 8 def @arg29 251 16777215 0 Y 0 39 8
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 0 39 8 def @arg23 251 16777215 8 Y 0 39 8
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 0 39 8 def @arg25 251 16777215 4 Y 0 39 8
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 0 39 8 def @arg27 251 16777215 10 Y 0 39 8
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 0 39 8 def @arg29 251 16777215 8 Y 0 39 8
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 0 39 8 def @arg23 251 16777215 0 Y 0 39 8
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 0 39 8 def @arg25 251 16777215 0 Y 0 39 8
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 0 39 8 def @arg27 251 16777215 0 Y 0 39 8
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 0 39 8 def @arg29 251 16777215 0 Y 0 39 8
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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" ;
......
...@@ -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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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" ;
......
...@@ -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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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 250 16777215 10 Y 0 39 8 def @arg13 251 16777215 10 Y 0 39 8
def @arg14 250 16777215 19 Y 0 39 8 def @arg14 251 16777215 19 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 8 Y 0 39 8 def @arg16 251 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 250 16777215 1 Y 0 39 8 def @arg20 251 16777215 1 Y 0 39 8
def @arg21 250 16777215 10 Y 0 39 8 def @arg21 251 16777215 10 Y 0 39 8
def @arg22 250 16777215 30 Y 0 39 8 def @arg22 251 16777215 30 Y 0 39 8
def @arg23 250 16777215 8 Y 128 39 63 def @arg23 251 16777215 8 Y 128 39 63
def @arg24 250 16777215 8 Y 0 39 8 def @arg24 251 16777215 8 Y 0 39 8
def @arg25 250 16777215 4 Y 128 39 63 def @arg25 251 16777215 4 Y 128 39 63
def @arg26 250 16777215 4 Y 0 39 8 def @arg26 251 16777215 4 Y 0 39 8
def @arg27 250 16777215 10 Y 128 39 63 def @arg27 251 16777215 10 Y 128 39 63
def @arg28 250 16777215 10 Y 0 39 8 def @arg28 251 16777215 10 Y 0 39 8
def @arg29 250 16777215 8 Y 128 39 63 def @arg29 251 16777215 8 Y 128 39 63
def @arg30 250 16777215 8 Y 0 39 8 def @arg30 251 16777215 8 Y 0 39 8
def @arg31 250 16777215 3 Y 0 39 8 def @arg31 251 16777215 3 Y 0 39 8
def @arg32 250 16777215 6 Y 0 39 8 def @arg32 251 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 250 16777215 0 Y 0 39 8 def @arg13 251 16777215 0 Y 0 39 8
def @arg14 250 16777215 0 Y 0 39 8 def @arg14 251 16777215 0 Y 0 39 8
def @arg15 250 16777215 19 Y 0 39 8 def @arg15 251 16777215 19 Y 0 39 8
def @arg16 250 16777215 0 Y 0 39 8 def @arg16 251 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 250 16777215 0 Y 0 39 8 def @arg20 251 16777215 0 Y 0 39 8
def @arg21 250 16777215 0 Y 0 39 8 def @arg21 251 16777215 0 Y 0 39 8
def @arg22 250 16777215 0 Y 0 39 8 def @arg22 251 16777215 0 Y 0 39 8
def @arg23 250 16777215 0 Y 128 39 63 def @arg23 251 16777215 0 Y 128 39 63
def @arg24 250 16777215 0 Y 0 39 8 def @arg24 251 16777215 0 Y 0 39 8
def @arg25 250 16777215 0 Y 128 39 63 def @arg25 251 16777215 0 Y 128 39 63
def @arg26 250 16777215 0 Y 0 39 8 def @arg26 251 16777215 0 Y 0 39 8
def @arg27 250 16777215 0 Y 128 39 63 def @arg27 251 16777215 0 Y 128 39 63
def @arg28 250 16777215 0 Y 0 39 8 def @arg28 251 16777215 0 Y 0 39 8
def @arg29 250 16777215 0 Y 128 39 63 def @arg29 251 16777215 0 Y 128 39 63
def @arg30 250 16777215 0 Y 0 39 8 def @arg30 251 16777215 0 Y 0 39 8
def @arg31 250 16777215 0 Y 0 39 8 def @arg31 251 16777215 0 Y 0 39 8
def @arg32 250 16777215 0 Y 0 39 8 def @arg32 251 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" ;
......
...@@ -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;
...@@ -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
......
...@@ -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);
......
...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment