From 05cd698f542f295b4fcd28d4704bce0f37e534ca Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 15 May 2004 17:07:44 +0500 Subject: Fixes for #3371, #3372, #3374, #3375, #3376 libmysql/libmysql.c: code to fix #3772 counting of field->max_length moved to mysql_store_stmt_result so it will work in libmysqld also libmysqld/lib_sql.cc: to fix #3771 and #3775 stmt->affected_rows specifying added code getting default values changed so it will add terminating /0 to values sql/sql_parse.cc: to fix #3773 silly mistake here :\ sql/sql_prepare.cc: to fix #3774 and #3776 special function for datetime values in embedded server added unsigned flag now specified for values in embedded server tests/client_test.c: this test fails if privilege-checking pars are disabled (it's the default for libmysqld) --- tests/client_test.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests') diff --git a/tests/client_test.c b/tests/client_test.c index ba70bcd7fa7..f859bffb405 100644 --- a/tests/client_test.c +++ b/tests/client_test.c @@ -9872,7 +9872,10 @@ int main(int argc, char **argv) test_stiny_bug(); /* test a simple conv bug from php */ test_field_misc(); /* check the field info for misc case, bug: #74 */ test_set_option(); /* test the SET OPTION feature, bug #85 */ + /*TODO HF: here should be NO_EMBEDDED_ACCESS_CHECKS*/ +#ifndef EMBEDDED_LIBRARY test_prepare_grant(); /* to test the GRANT command, bug #89 */ +#endif test_frm_bug(); /* test the crash when .frm is invalid, bug #93 */ test_explain_bug(); /* test for the EXPLAIN, bug #115 */ test_decimal_bug(); /* test for the decimal bug */ -- cgit v1.2.1