mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
Fix 64-bit issue with mysql_client_test. (Bug #8047)
tests/mysql_client_test.c: Fix data type of variable used in bind
This commit is contained in:
parent
7fe43b71b9
commit
6eac27a9cd
1 changed files with 1 additions and 1 deletions
|
@ -10976,7 +10976,7 @@ static void test_view_insert()
|
|||
MYSQL_STMT *insert_stmt, *select_stmt;
|
||||
int rc, i;
|
||||
MYSQL_BIND bind[1];
|
||||
long my_val = 0L;
|
||||
int my_val = 0;
|
||||
ulong my_length = 0L;
|
||||
long my_null = 0L;
|
||||
const char *query=
|
||||
|
|
Loading…
Reference in a new issue