1. 25 Feb, 2009 1 commit
  2. 24 Feb, 2009 20 commits
  3. 23 Feb, 2009 12 commits
    • Alexey Kopytov's avatar
      a8cfa64f
    • Alexey Kopytov's avatar
      Automerge. · ba70c0b6
      Alexey Kopytov authored
      ba70c0b6
    • Alexey Kopytov's avatar
      Automerge. · 301308b7
      Alexey Kopytov authored
      301308b7
    • Alexey Kopytov's avatar
      Manual merge to 5.1. · c718b1d7
      Alexey Kopytov authored
      c718b1d7
    • Alexey Kopytov's avatar
      Fix for bug #15936: "round" differs on Windows to Unix · 1b5d173b
      Alexey Kopytov authored
      Both of our own implementations of rint(3) were inconsistent with the
      most common behavior of rint() on those platforms that have it: round
      to nearest, break ties by rounding to nearest even.
      
      Fixed by leaving just one implementation of rint() in our source tree,
      and changing its behavior to match the most common native
      implementations on other platforms.
      
      configure.in:
        Added checks for fenv.h and fesetround().
      include/config-win.h:
        Removed the incorrect implementation of rint() for Windows.
      include/my_global.h:
        Added an rint() implementation for platforms that do not have it.
      mysql-test/r/func_math.result:
        Added a test case for bug #15936.
      mysql-test/t/func_math.test:
        Added a test case for bug #15936.
      sql/mysqld.cc:
        Explicitly set the FPU rounding mode with fesetround().
      1b5d173b
    • Tatiana A. Nurnberg's avatar
      auto-merge · a97aca4a
      Tatiana A. Nurnberg authored
      a97aca4a
    • Tatiana A. Nurnberg's avatar
      auto-merge · cef3706e
      Tatiana A. Nurnberg authored
      cef3706e
    • Anurag Shekhar's avatar
      merging with changes in bugteam branch. · e91a9167
      Anurag Shekhar authored
      e91a9167
    • Leonard Zhou's avatar
      merge · 8c7b34d1
      Leonard Zhou authored
      8c7b34d1
    • Leonard Zhou's avatar
      merge · fc0c1cca
      Leonard Zhou authored
      fc0c1cca
    • Davi Arnaut's avatar
      Post-merge fix: test depends on feature not available under embedded. · 19cb8641
      Davi Arnaut authored
      mysql-test/t/query_cache_28249.test:
        Test depends on process state (not updated under embedded)
      19cb8641
    • Leonard Zhou's avatar
      Bug#40013 mixed replication: row based format could lead to stale tmp tables on the · ab369861
      Leonard Zhou authored
      slave.
      
      In mixed mode, if we create a temporary table and do some update which switch to ROW format,
      the format will keep in ROW format until the session ends or the table is dropped explicitly. 
      When the session ends, the temp table is dropped automaticly at cleanup time.
      but it checks only current binlog format and so skip insertion of DROP TABLE instructions into binlog.
      So the temp table can't be dropped correctly at slave.
      
      Our solution is that when closing temp tables at cleanup time we check both binlog format and binlog mode,
      and we could write DROP TABLE instructions into binlog if current binlog format is ROW but in MIX mode.
      
      mysql-test/suite/rpl/r/rpl_temp_table_mix_row.result:
        Test result file.
      mysql-test/suite/rpl/t/rpl_temp_table_mix_row.test:
        Test file.
      sql/sql_base.cc:
        Didn't do binloging when both current format and default format are ROW.
      ab369861
  4. 22 Feb, 2009 1 commit
  5. 21 Feb, 2009 1 commit
    • Alfranio Correia's avatar
      BUG#38174 secure-file-priv breaks LOAD DATA INFILE replication in statement mode · 98502312
      Alfranio Correia authored
                        
      If secure-file-priv was set on slave, it became unable to execute
      LOAD DATA INFILE statements sent from master using mixed or
      statement-based replication.
                        
      This patch fixes the issue by ignoring this security restriction
      and checking if the files are created and read by the slave in the
      --slave-load-tmpdir while executing the SQL Thread.
      98502312
  6. 20 Feb, 2009 5 commits
    • Mattias Jonsson's avatar
      merge · a1932447
      Mattias Jonsson authored
      a1932447
    • Mattias Jonsson's avatar
      Backport of patch for bug#40003 from 6.0 to 5.1, · c4981dec
      Mattias Jonsson authored
      related to the backport of the patch for bug#38719
      
      sql/ha_partition.cc:
        bug#40003, archive does not handle dup_key.
      c4981dec
    • Patrick Crews's avatar
      automerge · 73c30397
      Patrick Crews authored
      73c30397
    • Patrick Crews's avatar
      auto merge · 3281f8bd
      Patrick Crews authored
      3281f8bd
    • Andrei Elkin's avatar
      Bug #37313 BINLOG Contains Incorrect server id · e2e6e14c
      Andrei Elkin authored
        
      Signed integer format specifier forced to print the binlog header with server_id
      negative if the unsigned value sets the sign-bit ON.
        
      Fixed with correcting the specifier to correspond to typeof(server_id) == ulong.
      
      mysql-test/r/mysqlbinlog.result:
        results changed.
      mysql-test/t/mysqlbinlog.test:
        displaying the expected unsignedly formatted server_id value, bug#37313.
      sql/log_event.cc:
        Format specifier is corrected to correspond to typeof(server_id).
      e2e6e14c