1. 27 Feb, 2008 5 commits
  2. 26 Feb, 2008 13 commits
  3. 25 Feb, 2008 1 commit
    • unknown's avatar
      Bug#28386 the general log is incomplete · 043b1567
      unknown authored
      The problem is that the commands COM_STMT_CLOSE, COM_STMT_RESET,
      COM_STMT_SEND_LONG_DATA weren't being logged to the general log.
      
      The solution is to log the general log the aforementioned commands.
      
      
      mysql-test/t/mysql_client_test-master.opt:
        Also log to table.
      sql/sql_prepare.cc:
        Log COM_STMT_CLOSE, COM_STMT_RESET and COM_STMT_SEND_LONG_DATA.
      tests/mysql_client_test.c:
        Add test case for Bug#28386
      043b1567
  4. 23 Feb, 2008 2 commits
  5. 22 Feb, 2008 19 commits
    • unknown's avatar
      Bug #34053: normal users can enable innodb_monitor logging · ea109791
      unknown authored
      The check_global_access() function was made available to InnoDB, but
      was not defined in the embedded server library.  InnoDB, as a plugin,
      is not recompiled when the embedded server is built.  This caused a
      link failure when compiling applications which use the embedded server.
      
      The fix here is to always define check_global_access() externally; in
      the embedded server case, it is defined to just return OK.
      
      Also, don't run the test case for this bug in embedded server.
      
      
      mysql-test/t/innodb_bug34053.test:
        Disable this test on embedded server - it tests privilege
        checks which are not in place there.
      sql/mysql_priv.h:
        Since check_global_access() may be used from some storage engine plugins
        (InnoDB, currently), and the plugins are not recompiled for the embedded
        server, it must be defined externally even for NO_EMBEDDED_ACCESS_CHECKS.
      sql/sql_parse.cc:
        Since check_global_access() may be used from some storage engine plugins
        (InnoDB, currently), and the plugins are not recompiled for the embedded
        server, it must be defined externally even for NO_EMBEDDED_ACCESS_CHECKS.
      ea109791
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.1-build · efce7728
      unknown authored
      into  hh-nb.hungers:/work/trees/mysql-5.1-build-src-clean
      
      efce7728
    • unknown's avatar
      Merge hh-nb.hungers:/work/trees/mysql-5.1-build-src-clean · ec5c92bf
      unknown authored
      into  hh-nb.hungers:/work/merge/mysql-5.1-build
      
      ec5c92bf
    • unknown's avatar
      Inserted changes from the review of bug#32664. · 39b0dd3d
      unknown authored
      39b0dd3d
    • unknown's avatar
      Merge hh-nb.hungers:/work/merge/mysql-5.1-build · 6ae9ef43
      unknown authored
      into  hh-nb.hungers:/work/merge/mysql-5.1-bug32664
      
      6ae9ef43
    • unknown's avatar
      Merge ahristov@bk-internal.mysql.com:/home/bk/mysql-5.1-runtime · 06ad5187
      unknown authored
      into  whirlpool.hristov.com:/work/mysql-5.1-runtime
      
      06ad5187
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1-runtime · e3c02f42
      unknown authored
      into  dipika.(none):/opt/local/work/mysql-5.1-runtime
      
      e3c02f42
    • unknown's avatar
      Update new test results after merge (Bug#12713) · 1bafc2e3
      unknown authored
      1bafc2e3
    • unknown's avatar
      mysql-test/mysql-test-run.pl · 0bca82cd
      unknown authored
          Disable extra team trees.
          Temporary fix for entry 34761 in the bugs DB.
          (Patch by Magnus Svensson, 2008-02-22 17:40:14+01:00, msvensson@pilot.mysql.com +1 -0)
      
      
      mysql-test/mysql-test-run.pl:
        Disable extra team trees.
        Temporary fix for entry 34761 in the bugs DB.
        (Patch by Magnus Svensson, 2008-02-22 17:40:14+01:00, msvensson@pilot.mysql.com +1 -0)
      0bca82cd
    • unknown's avatar
      Fix for Bug#29605 · d840fd3e
      unknown authored
      --local-infile=0 checks can be bypassed by sending a FETCH LOCAL FILE response
        
      Add a check for CLIENT_LOCAL_FILES before sending a local file.
      Beware, that all binary distributions enable sending of local files and it's up
      to the programs which use libmysql to disable it, if they don't use this functionality.
      Otherwise they are not safe.
      
      
      client/mysqltest.c:
        Enable LOAD DATA LOCAL INFILE for the test suite, like some rpl and ndb test.
      sql-common/client.c:
        Check if the client has LOAD DATA LOCAL INFILE disabled and
        don't serve such requests from the server. This is not 100% proof,
        as if the client has this enabled, in all binary builds for BC,
        the check won't work and the client can be tricked into sending a
        local file.
      tests/mysql_client_test.c:
        Switch on LOCAL INFILE in client test. If one day there
        is a test which uses it, then it will work out of the box.
      d840fd3e
    • unknown's avatar
      Merge trift2.:/MySQL/M50/push-5.0 · 2a697d75
      unknown authored
      into  trift2.:/MySQL/M51/push-5.1
      
      
      storage/ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp:
        Auto merged
      2a697d75
    • unknown's avatar
      Merge trift2.:/MySQL/M50/mysql-5.0 · 45c41a48
      unknown authored
      into  trift2.:/MySQL/M50/push-5.0
      
      
      ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp:
        Auto merged
      45c41a48
    • unknown's avatar
      Merge ahristov@bk-internal.mysql.com:/home/bk/mysql-5.1-runtime · af43434e
      unknown authored
      into  whirlpool.hristov.com:/work/mysql-5.1-runtime
      
      
      sql/events.cc:
        Auto merged
      af43434e
    • unknown's avatar
      Fix for bug#22738 Events: After stop and start disabled events could reside in the queue · 8fd1b0a7
      unknown authored
      Disabled events weren't removed from the memory queue after the scheduler has been
      re-enabled. After recalculation of next execution time of an event, it might get disabled.
      
      
      sql/event_queue.cc:
        Sort the event queue in a way that the disabled events will always be
        at the end. We will use this for cleaning it, starting from the end.
        
        After recalculating times in the queue, after the scheduler has been enabled
        after disabled state, the queue should be cleaned from DISABLED events.
        The queue is sorted in a way such that the disabled events are at the end.
        Thus, we can start from the end of the queue and remove all DISABLED till we
        find the first with different state.
      sql/events.cc:
        Add a comment about possible problem with replication of events,
        disabled events and server restarts.
      8fd1b0a7
    • unknown's avatar
      Merge trift2.:/MySQL/M51/mysql-5.1 · 72048d06
      unknown authored
      into  trift2.:/MySQL/M51/push-5.1
      
      
      configure.in:
        Auto merged
      extra/yassl/src/handshake.cpp:
        Auto merged
      extra/yassl/src/template_instnt.cpp:
        Auto merged
      extra/yassl/src/yassl_imp.cpp:
        Auto merged
      mysql-test/mysql-test-run.pl:
        Auto merged
      sql/ha_ndbcluster_binlog.cc:
        Auto merged
      sql/handler.cc:
        Auto merged
      sql/log_event.cc:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/sql_class.cc:
        Auto merged
      storage/ndb/src/common/util/OutputStream.cpp:
        Auto merged
      storage/ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp:
        Auto merged
      storage/ndb/tools/waiter.cpp:
        Auto merged
      72048d06
    • unknown's avatar
      Update new tests after merge. · 2198a672
      unknown authored
      2198a672
    • unknown's avatar
      An unused variable (compile-time warning). · abbf84a8
      unknown authored
      
      sql/sql_view.cc:
        An unused variable.
      abbf84a8
    • unknown's avatar
      Disable concurrent inserts for the kill.test · ad8a29b6
      unknown authored
      
      mysql-test/r/kill.result:
        Update test case result.
      mysql-test/t/disabled.def:
        Re-enable kill test, bug was closed.
      mysql-test/t/kill.test:
        Disable concurrent inserts for the kill test.
      ad8a29b6
    • unknown's avatar
      1c39ff01