summaryrefslogtreecommitdiff
path: root/BUILD/compile-pentium-valgrind-max
Commit message (Collapse)AuthorAgeFilesLines
* BUG#27701 don't pass arguments to sourced script if they're not modified as ↵df@pippilotta.erinye.com2007-04-111-1/+1
| | | | this is either a no-op (if done correctly), a different no-op with some shells (if done the bash way, but with correct quoting) or breaks arguments with whitespace for some shells (if done the bash way, without quotes).
* Implement --warning-mode in SETUP.sh. The value of thekonstantin@mysql.com2006-04-071-1/+1
| | | | | | | argument can be either "pedantic" or "old" (actually, or anything else). In case of "pedantic" mode, use -ansi -pedantic compilation flags. Fix the build to compile in pedantic mode. (Version 3 of the patch, with after-review fixes)
* Remove dead code from BUILD/ scripts: $debug_extra_warnings is konstantin@mysql.com2006-04-051-2/+0
| | | | | | | never defined. It was used at some point to add -Wuninitialized to debug flags, but not any more. If there is still need to add -Wunitialized, it can be added directly to $global_warnings.
* Remove dead code from BUILD/ scripts.konstantin@mysql.com2006-04-051-5/+2
|
* Fix all BUILD/*max* scripts to use -DBIG_TABLES, like our real Max builds do.jimw@mysql.com2005-01-191-1/+1
| | | | (Simpler fix than last commit -- no need to mess with base_cxxflags.)
* Put flags for -max building in BUILD/SETUP.sh so they are consistent acrossjimw@mysql.com2005-01-131-1/+1
| | | | | all architectures, and in sync with the flags used to build the MySQL Max packages. Also back-port AMD64 build scripts from 5.0.
* Added --with-ndbcluster config option to compile-pentium-valgrind-maxpem@mysql.comhem.se2004-07-291-1/+1
| | | | (since it's in the other -max builds already).
* Merge with 4.0 to get fixes for Windows project filesmonty@mysql.com2004-05-251-1/+1
|\
| * New MYSQL_SERVER_SUFFIX usage (for easier compilation)monty@mysql.com2004-05-251-1/+1
| | | | | | | | Update of VC++ project files.
* | CLIENT_MULTI_QUERIES -> CLIENT_MULTI_STATEMENTSmonty@mashka.mysql.fi2003-11-181-1/+2
| | | | | | | | | | | | | | | | | | | | New multi-key-cache handling. This was needed becasue the old one didn't work reliable with MERGE tables. ALTER TABLE table_name ... CHARACTER SET ... now changes all char/varchar/text columns to the given character set (One must use ALTER TABLE ... DEFAULT CHARACTER SET ... to change the default character set) Fixed that have_compress is detected properly (fixes problems with func_compress.test on platforms without zlib) New syntax for CACHE INDEX ('keys' is optional if no index name is given and one mentions the key cache name only ones) Removed compiler warnings Added mysql_set_server_option() to allow clients like PHP to easaily set/reset the multi-statement flag.
* | Fixed access to uninitialized memory in protocol::store_timemonty@mysql.com2003-11-041-1/+1
| |
* | Simplified 'wrong xxx name' error messages by introducing 'general' ↵monty@narttu.mysql.fi2003-11-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ER_WRONG_NAME error Cleaned up (and disabled part of) date/time/datetime format patch. One can't anymore change default read/write date/time/formats. This is becasue the non standard datetime formats can't be compared as strings and MySQL does still a lot of datetime comparisons as strings Changed flag argument to str_to_TIME() and get_date() from bool to uint Removed THD from str_to_xxxx functions and Item class. Fixed core dump when doing --print-defaults Move some common string functions to strfunc.cc Dates as strings are now of type my_charset_bin instead of default_charset() Introduce IDENT_QUOTED to not have to create an extra copy of simple identifiers (all chars < 128) Removed xxx_FORMAT_TYPE enums and replaced them with the old TIMESTAMP_xxx enums Renamed some TIMESTAMP_xxx enums to more appropriate names Use defines instead of integers for date/time/datetime string lengths Added to build system and use the new my_strtoll10() function.
* | Indentation cleanupsmonty@narttu.mysql.fi2003-10-081-21/+11
| | | | | | | | Remove wait_if_global_read_lock on commit as this can cause deadlocks
* | Merge with 4.0.16monty@narttu.mysql.fi2003-10-071-0/+24
|\ \ | |/
| * A note that Valgrind does not give a good stacktrace when the problemguilhem@mysql.com2003-09-301-0/+24
| | | | | | | | | | | | is involving an assembly function. Testcase was BUG#1194 SELECT @a:=1; SELECT @a, @a:=1;
* | Remove FORCE_INIT_OF_VARS when compiling for valgrind/purify to spot wrong ↵monty@mashka.mysql.fi2003-06-301-1/+1
| | | | | | | | | | | | | | LINT_INIT() options Fixed bug in ALTER TABLE ... MODIFY integer-column Added ref_or_null optimization (needed for subqueries)
* | Give warning if MySQL doesn't honor given storage enginemonty@mashka.mysql.fi2003-05-131-1/+1
|/ | | | Allow syntax CREATE TABLE t1 (LIKE t2)
* Fixes for Netwaremonty@mashka.mysql.fi2003-01-281-1/+1
| | | | | | | | Call pthread_mutex_destroy() on not used mutex. Changed comments in .h and .c files from // -> /* */ Added detection of mutex on which one didn't call pthread_mutex_destroy() Fixed bug in create_tmp_field() which causes a memory overrun in queries that uses "ORDER BY constant_expression" Added optimisation for ORDER BY NULL
* Added back old LARGEFILE handlingmonty@hundin.mysql.fi2002-10-291-0/+13
Fixed reference to freed memory in acl_init()/grant_init() Fixed possible memory leak. (Could only happen in very strange circumstances) Fixed bug in ALTER TABLE with BDB tables Updated mysql-test for valgrind