1. 29 May, 2003 1 commit
  2. 28 May, 2003 3 commits
  3. 27 May, 2003 6 commits
  4. 26 May, 2003 14 commits
  5. 25 May, 2003 2 commits
    • unknown's avatar
      - Fix for memory leak if the SQL slave thread is killed just after reading an event. · 1f58d28c
      unknown authored
      - A few more mutex locks and unlocks of rli.log_space_lock for doing clean reads of
      rli.ignore_log_space_limit
      - Broadcast after unlock, not before (small speed optimisation).
      
      1f58d28c
    • unknown's avatar
      log.cc: · 141956b2
      unknown authored
        If FOREIGN_KEY_CHECKS=0, wrap in binlog SQL statements inside SET FOREIGN_...=0; ... ; SET FOREIGN_...=1
      
      
      sql/log.cc:
        If FOREIGN_KEY_CHECKS=0, wrap in binlog SQL statements inside SET FOREIGN_...=0; ... ; SET FOREIGN_...=1
      141956b2
  6. 24 May, 2003 1 commit
    • unknown's avatar
      Fix for bug #490 and #491 (see details below) · 3132a4cd
      unknown authored
      
      mysql-test/r/insert_select.result:
        Result update.
      mysql-test/r/rpl_insert_id.result:
        Test update
      mysql-test/t/insert_select.test:
        Check if a partly completed INSERT SELECT (failing because of "Duplicate key"
        after successfully inserting other rows) is written to the binlog if the
        table is not transactional and at least one row has been inserted (bug #491)
      mysql-test/t/rpl_insert_id.test:
        Test for bug #490 (INSERT SELECT in auto_increment)
      sql/sql_insert.cc:
        - In INSERT ... SELECT, if it fails with error but one row has been inserted and
        the table is not transactional, we must write to the binlog (the slave will stop
        because of the error code in the binlog event, this is normal). bug 491.
        - we must set INSERT_ID before writing to the binlog (bug 490
        accidentally introduced by another dev in 4.0.13).
      3132a4cd
  7. 23 May, 2003 4 commits
  8. 21 May, 2003 6 commits
  9. 19 May, 2003 3 commits
    • unknown's avatar
      - Tagged ChangeSet 1.1497 as "mysql-4.0.13" · f7e6d223
      unknown authored
       - Updated version number in configure.in to 4.0.14 now that 4.0.13 has
         been tagged 
      
      
      configure.in:
         - Updated version number to 4.0.14 now that 4.0.13 has been tagged
      f7e6d223
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.0 · f85a24fc
      unknown authored
      into narttu.mysql.fi:/my/mysql-4.0
      
      
      sql/mysql_priv.h:
        Auto merged
      f85a24fc
    • unknown's avatar
      Added option --read-only (Thanks to Markus Benning) · 91ab6a15
      unknown authored
      
      myisam/myisamchk.c:
        Removed warning from fulltext when repairing many tables with fulltext index
      sql/init.cc:
        Remove not used variables
      sql/mysql_priv.h:
        Remove not used variables
      sql/mysqld.cc:
        Removed not used variables
        Added option --read-only
        Change opt_do_pstack and master_ssl to get them to work with my_getopt
      sql/set_var.cc:
        Option --read-only
      sql/sql_parse.cc:
        Option --read-only
      91ab6a15