summaryrefslogtreecommitdiff
path: root/BUILD/compile-pentium64-gprof
Commit message (Collapse)AuthorAgeFilesLines
* Merge 10.1 into 10.2Marko Mäkelä2019-05-131-1/+1
|\
| * Update FSF AddressVicențiu Ciorbaru2019-05-111-1/+1
| | | | | | | | * Update wrong zip-code
* | Fixed some build scripts to work with gprof and gcovMonty2018-01-181-1/+1
|/
* mysql-5.5.37 selective mergeSergei Golubchik2014-03-271-0/+1
|\
| * Updated/added copyright header. Added line "use is subject to license terms" Murthy Narkedimilli2014-02-171-0/+1
| | | | | | | | | | to copyright header.
* | mysql-5.5.32 mergeSergei Golubchik2013-07-161-1/+1
|\ \ | |/
| * Correcting the permissions of the executable files.Murthy Narkedimilli2013-03-201-0/+0
| |
| * Fix for Bug 16395495 - OLD FSF ADDRESS IN GPL HEADERMurthy Narkedimilli2013-03-191-1/+1
| |
* | 5.5-mergeSergei Golubchik2011-07-021-0/+15
|\ \ | |/
| * - Added/updated copyright headersKent Boortz2010-12-281-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | - Removed files specific to compiling on OS/2 - Removed files specific to SCO Unix packaging - Removed "libmysqld/copyright", text is included in documentation - Removed LaTeX headers for NDB Doxygen documentation - Removed obsolete NDB files - Removed "mkisofs" binaries - Removed the "cvs2cl.pl" script - Changed a few GPL texts to use "program" instead of "library"
* | Added count of my_sync calls (to SHOW STATUS)Michael Widenius2010-03-091-1/+1
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tmp_table_size can now be set to 0 (to disable in memory internal temp tables) Improved speed for internal Maria temp tables: - Don't use packed keys, except with long text fields. - Don't copy key all accessed pages during key search. Some new benchmark tests to sql-bench (for group by) BUILD/compile-pentium64-gcov: Update script to use same pentium_config flags as other tests BUILD/compile-pentium64-gprof: Update script to use same pentium_config flags as other tests include/my_sys.h: Added count of my_sync calls mysql-test/r/variables.result: tmp_table_size can now be set to 0 sql-bench/test-select.sh: Added some new test for GROUP BY on a not key field and group by with different order by sql/mysqld.cc: Added count of my_sync calls tmp_table_size can now be set to 0 (to disable in memory internal temp tables) sql/sql_select.cc: If tmp_table_size is 0, don't use in memory temp tables (good for benchmarking MyISAM/Maria temp tables) Don't pack keys for Maria tables; The 8K page size makes packed keys too slow for temp tables. storage/maria/ma_key_recover.h: Moved definition to maria_def.h storage/maria/ma_page.c: Moved code used to simplify comparing of identical Maria tables to own function (page_cleanup()) Fixed that one can read a page with a read lock. storage/maria/ma_rkey.c: For not exact key reads, cache the page where we found key (to speed up future read-next/read-prev calls) storage/maria/ma_search.c: Moved code to cache last key page to separate function. Instead of copying pages, only get a link to the page. This notable speeds up key searches on bigger tables. storage/maria/ma_write.c: Added comment storage/maria/maria_def.h: Moved page_cleanup() to separate function.
* Bug#23062 (GCOV build: helper scripts missing in the BUILD directory)unknown2007-08-151-0/+9
This patch provides compile helper scripts only, no server logic is affected. Before this patch, GCOV and GPROF build scripts were only provided for pentium platforms. With this patch, pentium, pentium64 and amd64 platforms have associated helper build scripts. The GCOV and GPROF specific compilation flags are set once in SETUP.sh, to avoid code duplication. BUILD/SETUP.sh: Moved GCOV and GPROF flags to compile-pentium-{gcov,gprof) to SETUP.sh BUILD/compile-pentium-gcov: Moved GCOV and GPROF flags to compile-pentium-{gcov,gprof) to SETUP.sh BUILD/compile-pentium-gprof: Moved GCOV and GPROF flags to compile-pentium-{gcov,gprof) to SETUP.sh BUILD/compile-amd64-gcov: Added helper scripts for GCOV and GPROF builds. BUILD/compile-amd64-gprof: Added helper scripts for GCOV and GPROF builds. BUILD/compile-pentium64-gcov: Added helper scripts for GCOV and GPROF builds. BUILD/compile-pentium64-gprof: Added helper scripts for GCOV and GPROF builds.