blob: 1601c02798413c6426ee6ec2d5f86d7b8508ea27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#
# Deallocates all the prepared statements
# created in prepares_stmts_setup.inc
#
DEALLOCATE PREPARE st1;
DEALLOCATE PREPARE st2;
DEALLOCATE PREPARE st3;
DEALLOCATE PREPARE st4;
DROP TABLE t1;
|