diff options
author | unknown <monty@mysql.com> | 2005-02-05 16:05:46 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-02-05 16:05:46 +0200 |
commit | 5cf29b3b609f7c3789cb433fc4819b350aad8409 (patch) | |
tree | fbf56df2842302d089f0dff84cdfc29a8203bf16 /BUILD/compile-pentium-debug-max | |
parent | c1d06b3cfaa64036de0de4907bc74a7faa4074f1 (diff) | |
download | mariadb-git-5cf29b3b609f7c3789cb433fc4819b350aad8409.tar.gz |
Fixed bug detected by sp-tests
Cleanup during reviews of new pushed code
BUILD/compile-pentium-debug-max:
Use --debug=full as default
BUILD/compile-pentium-debug:
Use --debug=full as default
mysys/my_alloc.c:
More debugging
sql/item_func.cc:
Cleanup new code
Don't call insert_id() for last_insert_id(value) to avoid side effects
sql/item_subselect.cc:
Fixed DBUG output
sql/sp_head.cc:
Simple cleanup
sql/sql_lex.cc:
Moved usage of arguments first in lex_start to make their usage clearer
Remove sl->expr_list.deleete_elements() becasue:
- It didn't do anything (delete_elements on a list of list is a no-op operation)
- The deleted for loop used SELECT_LEX elements that was allocated in mysql_new_select() in sp-head, but freed
when sphead->mem_root was freed. (delete sphead doesn't remove used SELECT_LEX elements from the global all_selects_list)
sql/sql_parse.cc:
More DBUG entries
Diffstat (limited to 'BUILD/compile-pentium-debug-max')
-rwxr-xr-x | BUILD/compile-pentium-debug-max | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD/compile-pentium-debug-max b/BUILD/compile-pentium-debug-max index 420657e0b73..7a11ad24c44 100755 --- a/BUILD/compile-pentium-debug-max +++ b/BUILD/compile-pentium-debug-max @@ -1,7 +1,7 @@ #! /bin/sh path=`dirname $0` -. "$path/SETUP.sh" +. "$path/SETUP.sh" $@ --with-debug=full extra_flags="$pentium_cflags $debug_cflags $max_cflags" c_warnings="$c_warnings $debug_extra_warnings" |