1. 25 Aug, 2005 19 commits
  2. 24 Aug, 2005 21 commits
    • unknown's avatar
      ha_tina.cc: · 681a4a3a
      unknown authored
        Some lack madvice()
      
      
      sql/examples/ha_tina.cc:
        Some lack madvice()
      681a4a3a
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-5.0-11680 · ffc086e6
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-5.0-clean
      
      
      configure.in:
        Auto merged
      sql/hostname.cc:
        Resolve conflict
      ffc086e6
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-5.0-12562 · ce38e65b
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-5.0-clean
      
      
      ce38e65b
    • unknown's avatar
      Make SYSDATE() behave as in Oracle: always the current datetime, not the · da13a76a
      unknown authored
      datetime of when the current statement began. This also makes SYSDATE()
      not safe in replication. (Bug #12562)
      
      
      mysql-test/r/func_time.result:
        Add new results
      mysql-test/t/func_time.test:
        Add tests for new SYSDATE() behavior
      sql/item_timefunc.cc:
        Add Item_func_sysdate_local implementation
      sql/item_timefunc.h:
        Add Item_func_sysdate_local, so SYSDATE() can behave differently
        than NOW().
      sql/lex.h:
        SYSDATE() is no longer an alias for NOW().
      sql/sql_yacc.yy:
        Handle SYSDATE()
      da13a76a
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · b1195383
      unknown authored
      into  mishka.local:/home/my/mysql-5.0
      
      
      sql/sql_base.cc:
        Auto merged
      b1195383
    • unknown's avatar
      Cleanups during review of new code · d2aa6e78
      unknown authored
      Removed ASSERT that can obviously never be wrong
      
      
      d2aa6e78
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · 44ac51af
      unknown authored
      into  mysql.com:/home/dlenev/src/mysql-5.0.12
      
      
      44ac51af
    • unknown's avatar
      Correction of fix for bug #12280 "Triggers: crash if flush tables". · 9017addf
      unknown authored
      We should not assume that "thd" argument of reload_acl_and_cache() is
      non-zero. Failure to do so will cause server to crash when one sends
      SIGHUP to it.
      
      
      sql/sql_parse.cc:
        reload_acl_and_cache():
          When we call this function from SIGHUP handler we pass 0 as "thd" argument
          to it. So we should not assume that thd is non-zero in it.
      9017addf
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · e0f9b8a8
      unknown authored
      into  mishka.local:/home/my/mysql-4.1
      
      
      e0f9b8a8
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 9171169e
      unknown authored
      into  mishka.local:/home/my/mysql-4.1
      
      
      9171169e
    • unknown's avatar
      Review fixes · 7b39b01b
      unknown authored
      
      mysql-test/r/ctype_cp932.result:
        Remove first event to make things portable
      mysql-test/r/rpl_drop_db.result:
        Use 'mysqltest' as database instead of 'd1'
        Made test faster by using longer table names instead of lots of tables
      mysql-test/t/ctype_cp932.test:
        Remove first event to make things portable
      mysql-test/t/rpl_drop_db.test:
        Use 'mysqltest' as database instead of 'd1'
        Made test faster by using longer table names instead of lots of tables
      sql/sql_db.cc:
        Indentation & style fixes
        Simple optimization (remove constant and boolean variable)
      7b39b01b
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-4.1-12302 · 2be4560e
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-4.1-clean
      
      
      2be4560e
    • unknown's avatar
      Merge rurik.mysql.com:/home/igor/mysql-5.0 · a7ce02bc
      unknown authored
      into rurik.mysql.com:/home/igor/dev/mysql-5.0-0
      
      
      a7ce02bc
    • unknown's avatar
      Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.0 · 7b20c33b
      unknown authored
      into rurik.mysql.com:/home/igor/mysql-5.0
      
      
      7b20c33b
    • unknown's avatar
      Merge heikki@bk-internal.mysql.com:/home/bk/mysql-4.1 · 23aecc5c
      unknown authored
      into  hundin.mysql.fi:/home/heikki/mysql-4.1
      
      
      23aecc5c
    • unknown's avatar
      subselect2.result: · 7e03ff1e
      unknown authored
        Update test result to reflect the fix of Bug #12779 : EXPLAIN SELECT of a subquery is now different
      
      
      mysql-test/r/subselect2.result:
        Update test result to reflect the fix of Bug #12779 : EXPLAIN SELECT of a subquery is now different
      7e03ff1e
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1 · 6f24ba5f
      unknown authored
      into mysql.com:/M41/mysql-4.1
      
      
      6f24ba5f
    • unknown's avatar
      Merge hundin.mysql.fi:/home/heikki/mysql-4.0 · 891740bf
      unknown authored
      into  hundin.mysql.fi:/home/heikki/mysql-4.1
      
      
      sql/ha_innodb.cc:
        Auto merged
      891740bf
    • unknown's avatar
      ha_innodb.cc: · 4c76d94f
      unknown authored
        Fix bug #12779 : never give a row count estimate of 0 to the MySQL query optimizer, as then left join optimizer may beleive it KNOWS that the table is empty; note that this fix may change query optimization of many other queries where one table is empty; note that the proper fix would be to make the query optimizer to know that the row count estimates it receives really are just estimates, it cannot assume they are certain
      
      
      sql/ha_innodb.cc:
        Fix bug #12779 : never give a row count estimate of 0 to the MySQL query optimizer, as then left join optimizer may beleive it KNOWS that the table is empty; note that this fix may change query optimization of many other queries where one table is empty; note that the proper fix would be to make the query optimizer to know that the row count estimates it receives really are just estimates, it cannot assume they are certain
      4c76d94f
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1 · ab5cc196
      unknown authored
      into mysql.com:/M41/mysql-4.1
      
      
      mysys/charset.c:
        Auto merged
      ab5cc196
    • unknown's avatar
      Merge · 91498790
      unknown authored
      
      mysys/charset.c:
        SCCS merged
      91498790