Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
a2f18f44
Commit
a2f18f44
authored
Dec 03, 2009
by
Evgeny Potemkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#48508: Crash on prepared statement re-execution.
Test case cleanup.
parent
1db3a684
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
mysql-test/r/ps.result
mysql-test/r/ps.result
+2
-0
mysql-test/t/ps.test
mysql-test/t/ps.test
+2
-0
No files found.
mysql-test/r/ps.result
View file @
a2f18f44
...
...
@@ -1902,6 +1902,7 @@ execute stmt;
a
execute stmt;
a
deallocate prepare stmt;
drop table t1;
drop view v1;
create table t1(a bigint);
...
...
@@ -1912,6 +1913,7 @@ execute stmt;
1
execute stmt;
1
deallocate prepare stmt;
drop table t1,t2;
#
End of 5.0 tests.
mysql-test/t/ps.test
View file @
a2f18f44
...
...
@@ -1982,6 +1982,7 @@ create view v1 AS select 1 as a from t1 where b;
prepare
stmt
from
"select * from v1 where a"
;
execute
stmt
;
execute
stmt
;
deallocate
prepare
stmt
;
drop
table
t1
;
drop
view
v1
;
...
...
@@ -1991,6 +1992,7 @@ insert into t2 values (null);
prepare
stmt
from
"select 1 from t1 join t2 on a xor b where b > 1 and a =1"
;
execute
stmt
;
execute
stmt
;
deallocate
prepare
stmt
;
drop
table
t1
,
t2
;
--
echo
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment