summaryrefslogtreecommitdiff
path: root/mysql-test/main/prepare.test
blob: 4d1573eb0c85ae569d6c65a2dc598139a646bf26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#
# MDEV-15738 Server crashes in my_strcasecmp_utf8 on query from I_S with UNION
# executed as PS
#

PREPARE stmt1 FROM "
SELECT table_name FROM information_schema.tables
WHERE table_name = 't1_first'
UNION ALL
SELECT table_name FROM information_schema.tables
WHERE table_name = 't1_second'";
execute stmt1;
execute stmt1;

create or replace table t1 (a int primary key, table_name char(40));
insert into t1 values(1,"t1_first");
insert into t1 values(2,"t1_second");

PREPARE stmt2 FROM "
SELECT table_name FROM t1
WHERE table_name = 't1_first'
UNION ALL
SELECT table_name FROM t1
WHERE table_name = 't1_second'";

execute stmt2;
execute stmt2;
flush tables;
execute stmt2;
alter table t1 add column b int;
execute stmt2;
execute stmt2;
drop table t1;
--error ER_NO_SUCH_TABLE
execute stmt2;
create or replace table t1 (a int primary key, table_name char(40));
insert into t1 values(1,"t1_first");
execute stmt2;

deallocate prepare stmt1;
deallocate prepare stmt2;
drop table t1;

--echo #
--echo # MDEV-25808 PREPARE/EXECUTE makes signed integer out of unsigned
--echo #
prepare p1 from 'select concat(?)';
execute p1 using 17864960750176564435;
prepare p1 from 'select SQRT(?) is not null';
execute p1 using 17864960750176564435;

--echo #
--echo # End of 10.3 tests
--echo #