1. 25 Aug, 2005 19 commits
  2. 24 Aug, 2005 21 commits
    • unknown's avatar
      ha_tina.cc: · 49641c49
      unknown authored
        Some lack madvice()
      
      
      sql/examples/ha_tina.cc:
        Some lack madvice()
      49641c49
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-5.0-11680 · 0cd3d729
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-5.0-clean
      
      
      configure.in:
        Auto merged
      sql/hostname.cc:
        Resolve conflict
      0cd3d729
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-5.0-12562 · 31069fb0
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-5.0-clean
      
      31069fb0
    • unknown's avatar
      Make SYSDATE() behave as in Oracle: always the current datetime, not the · 5ca3dfe7
      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()
      5ca3dfe7
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · 9156c654
      unknown authored
      into  mishka.local:/home/my/mysql-5.0
      
      
      sql/sql_base.cc:
        Auto merged
      9156c654
    • unknown's avatar
      Cleanups during review of new code · 9fbd86a2
      unknown authored
      Removed ASSERT that can obviously never be wrong
      
      9fbd86a2
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · f02c1c2b
      unknown authored
      into  mysql.com:/home/dlenev/src/mysql-5.0.12
      
      f02c1c2b
    • unknown's avatar
      Correction of fix for bug #12280 "Triggers: crash if flush tables". · 13b9e4c9
      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.
      13b9e4c9
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 9ced1d5c
      unknown authored
      into  mishka.local:/home/my/mysql-4.1
      
      9ced1d5c
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 30e6e0e6
      unknown authored
      into  mishka.local:/home/my/mysql-4.1
      
      30e6e0e6
    • unknown's avatar
      Review fixes · e497d7fc
      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)
      e497d7fc
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-4.1-12302 · a1f24ff3
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-4.1-clean
      
      a1f24ff3
    • unknown's avatar
      Merge rurik.mysql.com:/home/igor/mysql-5.0 · 22c71948
      unknown authored
      into rurik.mysql.com:/home/igor/dev/mysql-5.0-0
      
      22c71948
    • unknown's avatar
      Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.0 · ed8ea6cb
      unknown authored
      into rurik.mysql.com:/home/igor/mysql-5.0
      
      ed8ea6cb
    • unknown's avatar
      Merge heikki@bk-internal.mysql.com:/home/bk/mysql-4.1 · 17cd250d
      unknown authored
      into  hundin.mysql.fi:/home/heikki/mysql-4.1
      
      17cd250d
    • unknown's avatar
      subselect2.result: · fbdd529f
      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
      fbdd529f
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1 · 382f788a
      unknown authored
      into mysql.com:/M41/mysql-4.1
      
      382f788a
    • unknown's avatar
      Merge hundin.mysql.fi:/home/heikki/mysql-4.0 · 3524d734
      unknown authored
      into  hundin.mysql.fi:/home/heikki/mysql-4.1
      
      
      sql/ha_innodb.cc:
        Auto merged
      3524d734
    • unknown's avatar
      ha_innodb.cc: · c50bd2d3
      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
      c50bd2d3
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1 · 6f0b8fa8
      unknown authored
      into mysql.com:/M41/mysql-4.1
      
      
      mysys/charset.c:
        Auto merged
      6f0b8fa8
    • unknown's avatar
      Merge · 64b9cf06
      unknown authored
      
      mysys/charset.c:
        SCCS merged
      64b9cf06