summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorunknown <hf@deer.(none)>2004-05-15 17:07:44 +0500
committerunknown <hf@deer.(none)>2004-05-15 17:07:44 +0500
commit05cd698f542f295b4fcd28d4704bce0f37e534ca (patch)
tree925a39dedaa9aafde9d5be890ca8a898aeb7f4bc /tests
parentae95f38200b226191a290cf840e0d06b17304f82 (diff)
downloadmariadb-git-05cd698f542f295b4fcd28d4704bce0f37e534ca.tar.gz
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)
Diffstat (limited to 'tests')
-rw-r--r--tests/client_test.c3
1 files changed, 3 insertions, 0 deletions
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 */