Commit 41aadd90 authored by joerg@mysql.com's avatar joerg@mysql.com

Syntax correction for bug#5560.

parent 19a5d67e
...@@ -10123,9 +10123,9 @@ static void test_bug4231() ...@@ -10123,9 +10123,9 @@ static void test_bug4231()
bzero(tm, sizeof(tm)); bzero(tm, sizeof(tm));
bind[0].buffer_type= MYSQL_TYPE_TIME; bind[0].buffer_type= MYSQL_TYPE_TIME;
bind[0].buffer= (void*) tm; bind[0].buffer= &tm[0];
bind[1].buffer_type= MYSQL_TYPE_TIME; bind[1].buffer_type= MYSQL_TYPE_TIME;
bind[1].buffer= (void*) tm+1; bind[1].buffer= &tm[1];
mysql_stmt_bind_param(stmt, bind); mysql_stmt_bind_param(stmt, bind);
check_execute(stmt, rc); check_execute(stmt, rc);
......
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