diff options
author | unknown <konstantin@mysql.com> | 2006-02-03 00:07:36 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2006-02-03 00:07:36 +0300 |
commit | 2fb59bd72a89fae62a15623b7b2e6ae8aea40927 (patch) | |
tree | 6912fbadce7df138637af6d72928935fc99c87f7 /tests | |
parent | cf4b6ee4c01ca9e002511ad221872b4182b910fa (diff) | |
download | mariadb-git-2fb59bd72a89fae62a15623b7b2e6ae8aea40927.tar.gz |
Post-merge fixes.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index c5d31f96867..f32fd752d77 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -14697,23 +14697,6 @@ static void test_opt_reconnect() mysql_close(lmysql); } -/* Bug #16144: mysql_stmt_attr_get type error */ - -static void test_bug16144() -{ - const my_bool flag_orig= (my_bool) 0xde; - my_bool flag= flag_orig; - MYSQL_STMT *stmt; - myheader("test_bug16144"); - - /* Check that attr_get returns correct data on little and big endian CPUs */ - stmt= mysql_stmt_init(mysql); - mysql_stmt_attr_set(stmt, STMT_ATTR_UPDATE_MAX_LENGTH, (const void*) &flag); - mysql_stmt_attr_get(stmt, STMT_ATTR_UPDATE_MAX_LENGTH, (void*) &flag); - DIE_UNLESS(flag == flag_orig); - mysql_stmt_close(stmt); -} - static void test_bug12744() { |