1. 20 Dec, 2002 3 commits
    • unknown's avatar
      Merge work:/my/mysql-4.0 into mashka.mysql.fi:/home/my/mysql-4.0 · 901f9275
      unknown authored
      
      configure.in:
        Auto merged
      901f9275
    • unknown's avatar
      Changed thd variables max_join_size and select_limit to type ha_rows. · 928cd998
      unknown authored
      This fixed some optimization problems when using -DBIG_TABLES
      Portabilty fixes for OpenUnix and HPUX
      Added C and C++ version numbers to mysqlbug
      
      
      Docs/mysqld_error.txt:
        Added new error message
      acinclude.m4:
        Fix for configure problem on OpenUnix
      configure.in:
        Fix for OpenUnix
        Added C and C++ versions to mysqlbug
      mysql-test/r/variables.result:
        Update of max_join_size handling
      mysql-test/t/variables.test:
        Update of max_join_size handling
      mysys/Makefile.am:
        Removed duplicate row
      mysys/my_alloc.c:
        Safety fixes (not fatal)
      scripts/Makefile.am:
        Added C and C++ compiler versions to mysqlbug
      scripts/mysqlbug.sh:
        Added C and C++ compiler versions to mysqlbug
      sql/item_func.cc:
        Fixed that user variables that changes are not threated as constants.
      sql/item_func.h:
        Fixed that user variables that changes are not threated as constants.
      sql/mysqld.cc:
        Changed thd variables max_join_size and select_limit to type ha_rows
      sql/repl_failsafe.cc:
        Removed not needed cast
      sql/set_var.cc:
        Changed thd variables max_join_size and select_limit to type ha_rows
      sql/set_var.h:
        Changed thd variables max_join_size and select_limit to type ha_rows
      sql/slave.cc:
        Removed not needed cast
      sql/sql_class.h:
        Changed thd variables max_join_size and select_limit to type ha_rows
      sql/sql_parse.cc:
        Removed not needed cast
        Fixed security problem with mysql_drop_db()
      sql/sql_show.cc:
        Changed thd variables max_join_size and select_limit to type ha_rows
      sql/structs.h:
        Changed thd variables max_join_size and select_limit to type ha_rows
      928cd998
    • unknown's avatar
      - tagged ChangeSet 1.1477 as MySQL 4.0.6 · cd82dc9f
      unknown authored
       - bumped up version number in configure.in to 4.0.7-gamma
      
      
      configure.in:
         - bumped up version number in configure.in to 4.0.7-gamma
      cd82dc9f
  2. 19 Dec, 2002 1 commit
    • unknown's avatar
      server-cfg.sh: · fea2d66d
      unknown authored
        Corrected some typo.
      
      
      sql-bench/server-cfg.sh:
        Corrected some typo.
      fea2d66d
  3. 18 Dec, 2002 3 commits
    • unknown's avatar
      Merge akishkin@work.mysql.com:/home/bk/mysql-4.0 · f8f99f56
      unknown authored
      into mysql.com:/home/walrus/bk/40
      
      f8f99f56
    • unknown's avatar
      crash-me.sh: · d50415ce
      unknown authored
        Wrap long lines,
        New test - date_format_inresult (returns which date
        format dbms uses in the result set)
        New tests:
          -date_format_ISO 
          -date_format_ISO_with_date (checks if DBMS supports 
                YYYY-MM-DD or DATE 'YYYY-MM-DD' formats)
          -date_format_EUR
          -date_format_EUR_with_date (the same but 'DD.MM.YYYY' 
                format)
          -date_format_USA
          -date_format_USA_with_date ( the same but 'MM/DD/YYYY' format)
          -date_format_YYYYMMDD
          -date_format_YYYYMMDD_with_date 
      
      
      sql-bench/crash-me.sh:
        Wrap long lines,
        New test - date_format_inresult (returns which date
        format dbms uses in the result set)
        New tests:
          -date_format_ISO 
          -date_format_ISO_with_date (checks if DBMS supports 
                YYYY-MM-DD or DATE 'YYYY-MM-DD' formats)
          -date_format_EUR
          -date_format_EUR_with_date (the same but 'DD.MM.YYYY' 
                format)
          -date_format_USA
          -date_format_USA_with_date ( the same but 'MM/DD/YYYY' format)
          -date_format_YYYYMMDD
          -date_format_YYYYMMDD_with_date
      d50415ce
    • unknown's avatar
      Fix for found rows in multi-table updates · 387e26cf
      unknown authored
      387e26cf
  4. 16 Dec, 2002 5 commits
  5. 14 Dec, 2002 7 commits
    • unknown's avatar
      perror.c: · 0ae40871
      unknown authored
        Add to perror the code 150 about wrong foreign key def
      
      
      extra/perror.c:
        Add to perror the code 150 about wrong foreign key def
      0ae40871
    • unknown's avatar
      Merge mashka.mysql.fi:/home/my/mysql-3.23 · 41f106cb
      unknown authored
      into mashka.mysql.fi:/home/my/mysql-4.0
      
      
      mysys/my_rename.c:
        Auto merged
      41f106cb
    • unknown's avatar
      On windows, delete any conflicting 'to' files on rename(from,to) · 2aebb2a1
      unknown authored
      This fixes a bug with REPAIR TABLE t1 USE_FRM on windows.
      
      
      mysys/my_rename.c:
        On windows, delete any conflicting 'to' files on rename(from,to)
      2aebb2a1
    • unknown's avatar
      Merge with 3.23 to get patch for lower_case_table_names for MacOSX · d2348a8e
      unknown authored
      
      configure.in:
        merge with 3.23
      sql/log.cc:
        Use local file
      sql/mysqld.cc:
        Get patch for lower_case_table_names for MacOSX
      d2348a8e
    • unknown's avatar
      Transactions in AUTOCOMMIT=0 mode didn't rotate binary log · 3bf84777
      unknown authored
      Don't enable any bulk insert or record caching code if inserting less than MIN_ROWS_TO_USE_BULK_INSERT rows (100)
      
      
      myisam/mi_check.c:
        Fixed bug in copying statistics for disabled index
      mysql-test/r/distinct.result:
        Fix result after not doing key statistics for first insert.
      mysql-test/r/fulltext.result:
        Fix result after not doing key statistics for first insert.
      mysql-test/r/insert.result:
        Fix result after not doing key statistics for first insert.
      mysql-test/r/key_diff.result:
        Fix result after not doing key statistics for first insert.
      mysql-test/r/order_by.result:
        Fix result after not doing key statistics for first insert.
      mysql-test/r/select.result:
        Fix result after not doing key statistics for first insert.
      mysql-test/r/show_check.result:
        Fix result after not doing key statistics for first insert.
      sql/ha_myisam.cc:
        Don't disable index when inserting only a few rows
      sql/log.cc:
        Transactions in AUTOCOMMIT=0 mode didn't rotate binary log.
      sql/sql_insert.cc:
        Don't enable any bulk insert or record caching code if inserting less than MIN_ROWS_TO_USE_BULK_INSERT
      3bf84777
    • unknown's avatar
      Make --lower-case-table-names default on MacOSX · 7e50b7a2
      unknown authored
      7e50b7a2
    • unknown's avatar
      ab857858
  6. 13 Dec, 2002 11 commits
  7. 12 Dec, 2002 2 commits
    • unknown's avatar
      Removed compiler warnings · 982e3eed
      unknown authored
      Fixed wrong variable name for Windows
      
      
      VC++Files/innobase/innobase.dsp:
        Don't use precompiled headers (doesn't work with samba)
      VC++Files/myisammrg/myisammrg.dsp:
        Add missing files
      VC++Files/mysqlbinlog/mysqlbinlog.dsp:
        Fixed included paths
      VC++Files/mysqldemb/mysqldemb.dsp:
        Don't use precompiled headers (doesn't work with samba)
      VC++Files/mysqlserver/mysqlserver.dsp:
        Don't use precompiled headers (doesn't work with samba)
      VC++Files/sql/mysqld.dsp:
        Fixed paths
      innobase/include/univ.i:
        Removed compiler warning
      myisammrg/myrg_open.c:
        Removed compiler warning
      sql/ha_myisam.cc:
        Removed compiler warning
        Fixed wrong (but not dangerous) if statement
      sql/ha_myisammrg.cc:
        Removed compiler warning
      sql/mysqld.cc:
        Fixed wrong variable name for Windows
      sql/sql_update.cc:
        Removed not used label
      982e3eed
    • unknown's avatar
      - Fix handling of suffix option · 268065c0
      unknown authored
       - Replace function 'check_reserved_words' with correct one
      
      
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      268065c0
  8. 11 Dec, 2002 8 commits
    • unknown's avatar
      log.cc: · 5beb6005
      unknown authored
        We must not commit inside InnoDB when LOAD DATA INFILE just writes a block to the binlog; only commit if the log event type is QUERY_EVENT or EXECUTE_LOAD_EVENT
      
      
      sql/log.cc:
        We must not commit inside InnoDB when LOAD DATA INFILE just writes a block to the binlog; only commit if the log event type is QUERY_EVENT or EXECUTE_LOAD_EVENT
      5beb6005
    • unknown's avatar
    • unknown's avatar
      Add CHARSET keyword (missing from last push) · 016b6eae
      unknown authored
      
      sql/field.cc:
        Small safety fix
      016b6eae
    • unknown's avatar
    • unknown's avatar
      - tagged ChangeSet 1.1276.3.1 as MySQL 3.23.54 · e213f8a6
      unknown authored
       - bumped up version number in configure.in to 3.23.55
      
      e213f8a6
    • unknown's avatar
      Merge mysql.com:/space/my/mysql-4.0 · 0c7ceca4
      unknown authored
      into mysql.com:/space/my/mysql-4.0-build
      
      0c7ceca4
    • unknown's avatar
      Ensure that BEGIN / COMMIT is handled properly if slave dies · 5c665e25
      unknown authored
      Added syntax support for
      CREATE TABLE foo (a char CHARACTER SET latin1) CHARSET=latin1;
      
      
      Docs/internals.texi:
        Update binary protocol description
      innobase/include/db0err.h:
        Merge from 3.23
      mysql-test/r/insert.result:
        Updated test result from 3.23
      sql/log.cc:
        Fixed bug in replication and log rotation
      sql/log_event.cc:
        Ensure that BEGIN / COMMIT is handled properly if slave dies
      sql/slave.cc:
        Fixed bug in replication and log rotation
      sql/slave.h:
        Ensure that BEGIN / COMMIT is handled properly if slave dies
      sql/sql_analyse.cc:
        Moved usage of res before res is destroyed (by bzero(&s...))
      sql/sql_yacc.yy:
        Added syntax support for
        
        CREATE TABLE foo (a char CHARACTER SET latin1) CHARSET=latin1;
        
        To be able to read MySQL 4.1 dump files.
      5c665e25
    • unknown's avatar
      Merge with 3.23 · 6014c49d
      unknown authored
      
      innobase/dict/dict0dict.c:
        Auto merged
      libmysql/libmysql.c:
        Auto merged
      scripts/make_binary_distribution.sh:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/sql_udf.cc:
        Auto merged
      sql/ha_innodb.cc:
        Auto merged
      innobase/include/db0err.h:
        Skiped merge (Heikki wants to do this)
      innobase/row/row0mysql.c:
        Skiped merge (Heikki wants to do this)
      sql/sql_show.cc:
        Use local code
      6014c49d