summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorkonstantin@mysql.com <>2004-10-08 02:21:19 +0400
committerkonstantin@mysql.com <>2004-10-08 02:21:19 +0400
commit2aa7ec0d9da32c9fe0ea8bea6e21b9905fbdb487 (patch)
treea5dc36f841657f3f8e88422732495d2f85a82a86 /tests
parent66923bf9685734ebec22af1a2a9a63e68ccdc24b (diff)
downloadmariadb-git-2aa7ec0d9da32c9fe0ea8bea6e21b9905fbdb487.tar.gz
A fix for Bug#5748 "Prepared statement with BETWEEN and bigint values
crashes mysqld": implementation for a generic item tree modifications registry. Every item tree modification which should be rolled back for subsequent execution of a prepared statement or stored procedure should be saved in the registry. All such modifications are rolled back at once during cleanup stage of PS. Actual fix for the bug just adds a call to register modifications to convert_constant_item. Post review fixes implemented.
Diffstat (limited to 'tests')
-rw-r--r--tests/client_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/client_test.c b/tests/client_test.c
index 06a655cd3fb..ee8bc28165c 100644
--- a/tests/client_test.c
+++ b/tests/client_test.c
@@ -8442,7 +8442,7 @@ static void test_subqueries_ref()
int rc, i;
const char *query= "SELECT a as ccc from t1 where a+1=(SELECT 1+ccc from t1 where ccc+1=a+1 and a=1)";
- myheader("test_subquery_ref");
+ myheader("test_subqueries_ref");
rc= mysql_query(mysql, "DROP TABLE IF EXISTS t1");
myquery(rc);