1. 11 Jun, 2002 2 commits
    • unknown's avatar
    • unknown's avatar
      This changeset is mostly new version of previous commit modified according · 1027b835
      unknown authored
      to Monty's code style and optimization comments 
      
      
      client/client_priv.h:
        New value for --single-transaction option
      client/mysqldump.c:
        Add --single-transaction option for consistent dumps
      mysql-test/r/func_str.result:
        New functions test results
      mysql-test/t/func_str.test:
        Tests for SHA/AES functions
      mysys/Makefile.am:
        Extra files require compilation now
      sql/item_create.cc:
        New functions
      sql/item_create.h:
        New functions
      sql/item_strfunc.cc:
        Implementation of SHA/AES_ENCRYPT/AES_DECRYPT
      sql/item_strfunc.h:
        Required class definition
      sql/lex.h:
        Add symbols for implemented functions
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      1027b835
  2. 10 Jun, 2002 2 commits
  3. 09 Jun, 2002 8 commits
  4. 08 Jun, 2002 5 commits
    • unknown's avatar
      Merge abelkin@work.mysql.com:/home/bk/mysql-4.0 · c7f989cc
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/mysql-4.0
      
      c7f989cc
    • unknown's avatar
      removed unneeded table name pointer · 2fa15055
      unknown authored
      transaction-live memory cleanup moved to ha_commit/ha_rollback
      fixed query cache validator to work correctly on systems that allocate unaligned dat
      
      
      sql/handler.cc:
        transaction-live memory cleanup moved to ha_commit/ha_rollback
      sql/sql_cache.cc:
        removed unneeded table name pointer
        fixed debug enter message
        fixed query cache validator to work correctly on systems that allocate unaligned data
      sql/sql_class.cc:
        removed unneeded table name pointer
      sql/sql_parse.cc:
        transaction-live memory cleanup moved to ha_commit/ha_rollback
      sql/table.h:
        removed unneeded table name pointer
      2fa15055
    • unknown's avatar
    • unknown's avatar
      Added a lot of DBUG_xxx statements to be able to find replication bug. · 224869af
      unknown authored
      Fixed critical bug on 64 bit systems.
      Cleanups
      
      
      BUILD/compile-solaris-sparc-purify:
        Added --debug option.
      sql/log_event.cc:
        Added DBUG_xxx statements.
        Cleanup
      sql/opt_range.h:
        Dummy fix to remove warnings in purify
      sql/repl_failsafe.cc:
        Cleanup
      sql/slave.cc:
        Added DBUG statements to be able to find bugs.
        Optimized code.
        Fixed critical bug on 64 bit systems.
      sql/sql_repl.cc:
        Added DBUG_xx statements.
      224869af
    • unknown's avatar
      A bug fix and test case for a bug that appears in quereis where there · b8e27d09
      unknown authored
      is a GROUP BY a column that is not NOT NULL and ORDER BY is done by
      another column.
      
      Even better fix would be to make a separate function for this.
      
      b8e27d09
  5. 07 Jun, 2002 2 commits
  6. 06 Jun, 2002 5 commits
  7. 05 Jun, 2002 5 commits
    • unknown's avatar
      Merge hundin:/my/mysql-4.0 into bitch.mysql.fi:/my/mysql-4.0 · 97798207
      unknown authored
      
      mysql-test/mysql-test-run.sh:
        Auto merged
      97798207
    • unknown's avatar
      Merge hundin.mysql.fi:/my/mysql-3.23 · a0c099fe
      unknown authored
      into hundin.mysql.fi:/my/bk/mysql-4.0
      
      
      Docs/manual.texi:
        Auto merged
      sql/sql_insert.cc:
        Auto merged
      a0c099fe
    • unknown's avatar
      changelog · 8ec458ce
      unknown authored
      8ec458ce
    • unknown's avatar
      removed init_count from IO_CACHE. · 23e0e11e
      unknown authored
      Added missing mutex_unlock to slave replication code.
      
      
      include/my_sys.h:
        removed init_count from IO_CACHE.
        General cleanup.
      innobase/srv/srv0srv.c:
        Initailize slots to avoid purify warnings.
        Removed some compiler warnings.
      mysql-test/mysql-test-run.sh:
        Automatic start of slave under gdb
      mysys/mf_iocache.c:
        removed init_count
      sql/field.cc:
        Cleanup
      sql/log.cc:
        Cleanup
        added open_count variable.
      sql/log_event.cc:
        cleanup
        use is_prefix instead of memcmp()
      sql/repl_failsafe.cc:
        cleanup
      sql/slave.cc:
        cleanup
        use MYSQL_LOG->open_count instead of IO_CACHE->init_count
        Added missing mutex_unlock()
      sql/slave.h:
        cleanup
      sql/sql_class.h:
        cleanup
        Added open_count to MYSQL_LOGL
      sql/sql_parse.cc:
        removed compiler warning
      sql/sql_repl.cc:
        added DBUG_xxx
      sql/unireg.h:
        Added BIN_LOG_HEADER_SIZE
      23e0e11e
    • unknown's avatar
      Fixed mysql_info() result when using INSERT DELAYED · 4a70661e
      unknown authored
      
      Docs/manual.texi:
        changelog
      4a70661e
  8. 04 Jun, 2002 5 commits
  9. 03 Jun, 2002 6 commits
    • unknown's avatar
      Merge work:/home/bk/mysql-4.0 into hundin.mysql.fi:/my/bk/mysql-4.0 · 01558073
      unknown authored
      
      Docs/manual.texi:
        Auto merged
      sql/sql_parse.cc:
        Auto merged
      01558073
    • unknown's avatar
      Enable LOAD DATA LOCAL INFILE in mysql_test · b9b92e4e
      unknown authored
      Added syntax for column comments (for compability with 4.1)
      Fix of ALTER TABLE RENAME
      
      
      Docs/manual.texi:
        Changelog
      client/mysqltest.c:
        Enable LOAD DATA LOCAL INFILE
      mysql-test/r/alter_table.result:
        Test of syntax for column comments
      mysql-test/r/func_math.result:
        Fixed test of new truncate
      mysql-test/t/alter_table.test:
        Test of syntax for column comments
      mysys/my_gethostbyname.c:
        Portability fix
      sql/hostname.cc:
        Fixed pointer bug
      sql/item_cmpfunc.cc:
        Optimizing LIKE code
      sql/item_cmpfunc.h:
        Cleanup
      sql/mysqld.cc:
        Avoid warning of duplicate calls to mysql_thread_init()
      sql/sql_analyse.cc:
        Removed warning from DBUG
      sql/sql_parse.cc:
        Avoid warning of duplicate calls to mysql_thread_init()
      sql/sql_table.cc:
        Fix of ALTER TABLE RENAME
      sql/sql_yacc.yy:
        Added syntax for field comments
      vio/test-sslserver.c:
        Cleanup
      b9b92e4e
    • unknown's avatar
      Merge sinisa@work.mysql.com:/home/bk/mysql-4.0 · 31597cf4
      unknown authored
      into sinisa.nasamreza.org:/mnt/hdc/Sinisa/mysql-4.0
      
      31597cf4
    • unknown's avatar
      A bug fix when for SELECT ... INTO OUTFILE .... · 4d85702d
      unknown authored
      user has table privilege and global FILE privilege
      
      4d85702d
    • unknown's avatar
      mirrors.texi: · 3cd4f287
      unknown authored
        Update mirror list
      
      
      Docs/mirrors.texi:
        Update mirror list
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      3cd4f287
    • unknown's avatar
      Merge hundin:/my/mysql-4.0 into bitch.mysql.fi:/my/mysql-4.0 · dddd9084
      unknown authored
      
      innobase/pars/pars0opt.c:
        Auto merged
      mysql-test/mysql-test-run.sh:
        Auto merged
      dddd9084