MariaDB server is a community developed fork of MySQL server. Started by core members of the original MySQL team, MariaDB actively works with outside developers to deliver the most featureful, stable, and sanely licensed open SQL server in the industry.
Find a file
unknown 339deb0c07 Fix for BUG#20522 "RBR: CREATE TEMPORARY TABLE SELECT writes to binlog
though unneeded". It's indeed unneeded, as slave is only interested in
permanent tables, and permanent tables don't depend on temporary tables
when in row-based binlogging mode. And other CREATE TEMPORARY TABLE
(referring no table or with LIKE) already don't write the CREATE to
binlog in row-based mode. 


mysql-test/r/rpl_row_create_table.result:
  result update (note that no lines appear in SHOW BINLOG EVENTS further below, which is how we
  see the bug is fixed)
mysql-test/t/rpl_row_create_table.test:
  testing if a CREATE TEMPORARY TABLE SELECT goes to binlog (it should not)
  when in row-based binlogging mode. A few lines after, there is a SHOW
  BINLOG EVENTS; before the bugfix it showed the CREATE TEMPORARY TABLE.
sql/sql_class.h:
  a method to access select_create::create_info from outside of select_create
  ("read-only" access). Making get_thd() "read-only" too.
sql/sql_insert.cc:
  The function (hook) which writes CREATE TABLE to binlog when in row-based
  binlogging mode, for CREATE TABLE SELECT, now does nothing if the table
  is temporary (as in row-based mode, temp tables are not replicated).
  This is consistent with CREATE TEMPORARY TABLE LIKE and
  CREATE TEMPORARY TABLE, which don't write any CREATE to binlog in row-based
  mode.
2006-06-20 10:40:36 +02:00
BitKeeper
BUILD
client
cmd-line-utils
config/ac-macros don't call plugins' configure scripts manually, use AC_CONFIG_SUBDIRS 2006-06-15 21:43:29 +02:00
dbug atomic ops: 2006-06-17 16:20:39 +02:00
Docs
extra Merge mysql.com:/home/stewart/Documents/MySQL/5.0/main 2006-06-16 18:54:20 +10:00
include Merge april:devel/BitKeeper/mysql-5.0-engines 2006-06-19 19:58:55 +05:00
libmysql
libmysql_r
libmysqld
man
mysql-test Fix for BUG#20522 "RBR: CREATE TEMPORARY TABLE SELECT writes to binlog 2006-06-20 10:40:36 +02:00
mysys
netware
plugin
pstack
regex
scripts
server-tools
sql Fix for BUG#20522 "RBR: CREATE TEMPORARY TABLE SELECT writes to binlog 2006-06-20 10:40:36 +02:00
sql-common
storage Merge april:devel/BitKeeper/mysql-5.1-engines 2006-06-19 19:57:42 +05:00
strings
support-files
tests
unittest atomic ops: 2006-06-17 16:20:39 +02:00
VC++Files Merge rurik.mysql.com:/home/igor/tmp_merge 2006-06-14 20:00:36 -07:00
vio
win Fixing false alarm errors on windows build from a clean clone. 2006-06-15 22:46:52 -04:00
zlib
.bzrignore
.cvsignore
CMakeLists.txt
configure.in don't call plugins' configure scripts manually, use AC_CONFIG_SUBDIRS 2006-06-15 21:43:29 +02:00
COPYING
Makefile.am
README

This is a release of MySQL, a dual-license SQL database server.
MySQL is brought to you by the MySQL team at MySQL AB.

License information can be found in these files:
- For GPL (free) distributions, see the COPYING file.
- For commercial distributions, see the MySQLEULA.txt file.


For further information about MySQL or additional documentation, see:
- The latest information about MySQL: http://www.mysql.com
- The current MySQL documentation: http://dev.mysql.com/doc

Some manual sections of special interest:

- If you are migrating from an older version of MySQL, please read the
  "Upgrading from..." section first!
- To see what MySQL can do, take a look at the features section.
- For installation instructions, see the Installation chapter.
- For future plans, see the TODO appendix.
- For the new features/bugfix history, see the News appendix.
- For the currently known bugs/misfeatures (known errors) see the problems
  appendix.
- For a list of developers and other contributors, see the Credits
  appendix.

A local copy of the MySQL Reference Manual can be found in the Docs
directory in GNU Info format.  You can also browse the manual online or
download it in any of several formats at the URL given earlier in this
file.

************************************************************

IMPORTANT:

Bug or error reports should be sent to http://bugs.mysql.com.