summaryrefslogtreecommitdiff
path: root/Docs/manual.texi
Commit message (Collapse)AuthorAgeFilesLines
* - replaced manual.texi with a dummy placeholder file (manual.texi isunknown2003-01-271-55626/+32
| | | | | | | | | | | | | | | | | | | now maintained in a separate "mysqldoc" BK source tree) - it will be replaced with the correct manual.texi when building the official source distribution - fixed automake error about reservedwords.texi by moving it to EXTRA_DIST instead Docs/Makefile.am: - moved reservedwords.texi from info_TEXINFOS to EXTRA_DIST since it is not a full-featured texi file and automake would complain about "missing @setfilename" Docs/manual.texi: - replaced manual.texi with a dummy placeholder file (manual.texi is now maintained in a separate "mysqldoc" BK source tree) - it will be replaced with the correct manual.texi when building the official source distribution
* Fix to get core file on Linuxunknown2002-11-051-0/+2
| | | | | | | Docs/manual.texi: ChangeLog sql/mysqld.cc: Write info about writing core file to stderr
* Updated changelogunknown2002-10-291-0/+5
|
* Fixed problem with BDB tables and ALTER TABLEunknown2002-10-241-0/+2
| | | | | | | | | Docs/manual.texi: ChangeLog mysql-test/t/bdb-crash.test: Don't run test if BDB is not configured sql/sql_base.cc: Added free on error
* Fixed bug in LEFT JOIN ... WHERE not_null_key_column=NULL;unknown2002-10-161-0/+2
| | | | | | | | | | | | | Docs/manual.texi: ChangeLog sql/field.h: New virtual function to set a field to null or signal an error sql/field_conv.cc: New function to set a field to null or signal an error sql/item.cc: When setting a field to null internally (for WHERE testing) don't autoconvert NULL -> now() or last_insert_id() sql/item.h: New virtual function to set a field to null or signal an error
* Merge work:/home/bk/mysql into hundin.mysql.fi:/my/bk/mysqlunknown2002-10-141-0/+15
|\ | | | | | | | | Docs/manual.texi: Auto merged
| * Fixed a bug in key optimizing handling where the expressionunknown2002-10-141-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WHERE column_name = key_column_name was calculated as true for NULL values. Docs/manual.texi: Changelog mysql-test/r/distinct.result: Updated results caused by bug fix. mysql-test/r/null_key.result: New tests mysql-test/t/null_key.test: New tests sql/sql_select.cc: Additional change for previous changeset for using BLOB in GROUP BY
| * Allocate HEAP blocks in smaller blocks to get better memory utilization and ↵unknown2002-10-131-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | more speed when used with safemalloc. Don't initalize memory areas when run with --skip-safemalloc. Docs/manual.texi: ChangeLog heap/heapdef.h: Allocate HEAP blocks in smaller blocks to get better memory utilization and more speed when used with safemalloc. heap/hp_open.c: Allocate HEAP blocks in smaller blocks to get better memory utilization and more speed when used with safemalloc. mysys/safemalloc.c: Don't initalize memory areas when run with --skip-safemalloc. This can in some cases increase speed with 20 times when debugging
| * Fixed bug where we could reference a freed tmp_table->table_name variable ↵unknown2002-10-121-0/+6
| | | | | | | | | | | | | | | | | | | | for some GROUP BY ... ORDER BY queries. Docs/manual.texi: ChangeLog
* | - added missing changelog entry to manual.texiunknown2002-10-091-1/+4
| | | | | | | | | | | | Docs/manual.texi: - added missing changelog entry - fixed typo
* | - Fixed typo in 3.23.53 changelog entry in manual.texiunknown2002-10-091-1/+1
|/ | | | | | Docs/manual.texi: - fixed typo in changelog entry (thanks to Jocelyn Fournier for spotting this)
* Fixed bug in LOCK TABLES on windows.unknown2002-10-091-1/+11
| | | | | Docs/manual.texi: Changelog
* Remove wrong clear of mysql_port when using --skip-show-databasesunknown2002-10-081-0/+2
| | | | | Docs/manual.texi: ChangeLog
* Fixup.unknown2002-10-081-1/+1
|
* 3.23 Changelog cleanup (sync with 4.0/4.1)unknown2002-10-081-1/+1
|
* Small fix in mysqld_safe for some shellsunknown2002-10-051-0/+2
|
* Don't reset Delayed_insert_threads on FLUSH STATUSunknown2002-09-271-0/+2
| | | | | Docs/manual.texi: changelog
* Change name -> alias in TABLE_LIST.unknown2002-09-211-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added missing mutex-lock around critical section in GRANT handling. Docs/manual.texi: ChangeLog sql/lock.cc: Change name -> alias in TABLE_LIST. sql/slave.cc: Change name -> alias in TABLE_LIST. sql/sql_acl.cc: Added missing mutex-lock around critical section in GRANT handling. Changed name -> alias sql/sql_base.cc: Change name -> alias in TABLE_LIST. sql/sql_insert.cc: Change name -> alias in TABLE_LIST. sql/sql_parse.cc: Change name -> alias in TABLE_LIST. sql/sql_show.cc: Change name -> alias in TABLE_LIST. sql/sql_table.cc: Change name -> alias in TABLE_LIST. sql/sql_udf.cc: Change name -> alias in TABLE_LIST. sql/table.h: Change name -> alias in TABLE_LIST. tests/grant.pl: Fixed grant test
* Fixed bug with BINARY NULLunknown2002-09-181-0/+2
| | | | | | | | | Docs/manual.texi: ChangeLog mysql-test/r/binary.result: Test of binary NULL mysql-test/t/binary.test: Test of binary NULL
* Fixed bug in ALTER TABLE and RENAME TABLE when running with ↵unknown2002-09-161-1/+5
| | | | | | | lower-case-table-names. Docs/manual.texi: changelog
* Fixed core dump bug in ORDER BY ... LIMITunknown2002-09-151-0/+2
| | | | | Docs/manual.texi: Changelog
* Fixed changelogunknown2002-09-101-1/+4
|
* Mergeunknown2002-09-031-0/+4
|\ | | | | | | | | Docs/manual.texi: SCCS merged
| * Check if AND/OR expression can be NULLunknown2002-09-031-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | Better fix for ALTER TABLE on BDB tables (Both of the above fixes are already in 4.0) Docs/manual.texi: Changelog sql/item_cmpfunc.cc: Check if AND/OR expression can be NULL sql/sql_table.cc: Better fix for ALTER TABLE on BDB tables
* | LOCK+modify+OPTIMIZE bugfixunknown2002-08-311-0/+3
|/
* Mergeunknown2002-08-311-1/+4
|\ | | | | | | | | Docs/manual.texi: SCCS merged
| * manual.texi minor fix to 3.23.53 change noteunknown2002-08-281-3/+3
| | | | | | | | | | | | | | Docs/manual.texi: minor fix to 3.23.53 change note BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
| * Little but nasty bug with BDB and alter tableunknown2002-08-281-0/+3
| |
* | Fixed bug in mysqld when using configure --localstatedirunknown2002-08-231-0/+2
|/ | | | | Docs/manual.texi: Changelog
* Fix for HPUX 11 and pthread_mutex_lockunknown2002-08-161-0/+2
| | | | | | | include/my_pthread.h: Fix for HPUX 11 and pthread_mutex_lock (merge from 4.0) mysys/my_pthread.c: Fix for HPUX 11 and pthread_mutex_lock (merge from 4.0)
* Fix after mergeunknown2002-08-161-0/+1
|
* merged changelogunknown2002-08-161-5/+3
|\
| * Fixed typo so that ulonglong are properly converted to double on AIX with ↵unknown2002-08-161-3/+9
| | | | | | | | | | | | | | gcc 3.1 Docs/manual.texi: Changelog
* | - Tagged 3.23.52 releaseunknown2002-08-161-1/+9
|/ | | | | | | | | | | - Added 3.23.53 News section to the manual - Updated version number in configure.in to 3.23.53 Docs/manual.texi: Added News section for 3.23.53 configure.in: Bumped up version number to 3.23.53 now that 3.23.52 is released
* Remove 3.23.53 news section until 3.23.52 is tagged.unknown2002-08-131-8/+1
|
* Update docs because of stable tree revert.unknown2002-08-121-3/+0
|
* Various little docs fixups.unknown2002-08-121-2/+14
| | | | | | | | | | | BitKeeper/etc/config: Make my life easier on bk clone/pull. BitKeeper/triggers/post-commit: Little fixes in commit script (from 4.0 script). Added docs-commit@ notification for 3.23 (so we can more easily keep an eye on it). Docs/manual.texi: Change/addition for Sinisa. Clarification of BDB changelog entry.
* Fixed problem with BIGINT and shutdown on AIXunknown2002-08-121-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moved IF(test,column,NULL) code to 4.0 Changed mysys_priv.h to include my_pthread.h or my_no_pthread.h. Removed some CR's in os2 files. Docs/manual.texi: Changelog include/global.h: Fix for BIGINT problem on AIX include/my_no_pthread.h: Fixed typo libmysql/Makefile.shared: Fix for BIGINT problem on AIX mysql-test/mysql-test-run.sh: Fix to find xterm on AIX 4.3 mysql-test/r/bigint.result: Fix for BIGINT problem on AIX mysql-test/r/func_if.result: Change results for IF() after reverting change. mysql-test/t/bigint.test: Fix for BIGINT problem on AIX mysys/Makefile.am: Fix for BIGINT problem on AIX mysys/my_gethostbyname.c: Cleanup mysys/my_init.c: Cleanup mysys/my_net.c: Cleanup mysys/my_os2cond.c: Space & CRLF cleanup mysys/my_os2dirsrch.c: Space & CRLF cleanup mysys/my_os2dirsrch.h: Space & CRLF cleanup mysys/my_os2dlfcn.c: Space & CRLF cleanup mysys/my_os2file64.c: Space & CRLF cleanup mysys/my_os2mutex.c: Space & CRLF cleanup mysys/my_os2thread.c: Space & CRLF cleanup mysys/my_os2tls.c: Space & CRLF cleanup mysys/mysys_priv.h: cleanup mysys/thr_rwlock.c: cleanup sql/ha_innobase.cc: Removed usage of sprintf() Fixed missing end \0 which caused control characters to appear in SHOW INNODB STATUS sql/item_cmpfunc.cc: Reverted change for IF() sql/mysqld.cc: Fix for shutdown on AIX
* Moved a News entry from the 3.23.53 section into the 3.23.52 sectionunknown2002-08-101-8/+2
| | | | | | | | | | and removed the 3.23.53 News section for now until 3.23.52 is officially tagged. Docs/manual.texi: Moved this changelog entry into the 3.23.52 section and removed the 3.23.53 News section for now until 3.23.52 is officially tagged.
* A change in IF behaviour that several users asked for ...unknown2002-08-091-0/+8
|
* Fix for a security flaw in database hashunknown2002-08-071-0/+2
|
* Fixed problem with make distcheckunknown2002-08-061-1/+2
| | | | | | | | | | | | | | | | Fixed bug in automatic repair of MyISAM tables where table cache was not locked properly Docs/manual.texi: Changelog libmysql/Makefile.am: Fixed problem with make distcheck libmysql/Makefile.shared: Fixed problem with make distcheck sql/sql_base.cc: Fixed bug in automatic repair where table cache was not locked properly. strings/Makefile.am: Fixed problem with make distcheck
* Changed initialization of RND() to be less predictable.unknown2002-08-061-0/+2
| | | | | | | | | | Use MYSQL_CONFIG_NAME instead of "my" as the configuration file name. Docs/manual.texi: Changelog include/mysql_version.h.in: Use MYSQL_CONFIG_NAME instead of "my" as the configuration file name.
* mergeunknown2002-08-051-0/+3
|\ | | | | | | | | | | | | BitKeeper/etc/logging_ok: auto-union sql/sql_base.cc: Auto merged
| * Changelogunknown2002-08-051-0/+3
| |
* | Fixed bug with GROUP BY on NULL fields.unknown2002-08-051-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (Merge of code from 4.0) Docs/manual.texi: Changelog include/my_base.h: Fixed bug with GROUP BY on NULL fields. include/mysql_com.h: Fixed bug with GROUP BY on NULL fields. myisam/mi_search.c: Fixed bug with GROUP BY on NULL fields. myisam/mi_write.c: Fixed bug with GROUP BY on NULL fields. mysql-test/r/group_by.result: Fixed bug with GROUP BY on NULL fields. mysql-test/t/group_by.test: Fixed bug with GROUP BY on NULL fields. sql/sql_base.cc: Removed some not-needed comments in the trace file sql/sql_select.cc: Fixed bug with GROUP BY on NULL fields.
* | mergeunknown2002-08-051-1/+3
|\ \
| * | Added some mutex locks to make SLAVE START and SLAVE STOP thread safe.unknown2002-08-051-0/+2
| |/ | | | | | | | | | | | | | | | | | | Docs/manual.texi: Changelog sql/gen_lex_hash.cc: Merged --verbose option from 4.0 Smaller hash table sql/slave.cc: Added some mutex locks to make SLAVE START and SLAVE STOP thread safe.
* | Fixed a problem with privilege tables when downgrading from 4.0.2unknown2002-08-031-0/+2
|/ | | | | | | to 3.23
* Fixed wrong printf() string in InnoDBunknown2002-07-311-1/+1
| | | | | | | | | | | | Removed some compiler warnings regarding 'static' from InnoDB Docs/manual.texi: Fixed wrong manual entry innobase/btr/btr0cur.c: Fixed wrong printf() string innobase/include/univ.i: Removed compiler warnings (static inline produces a lot of warnings and is probably not portable)