1. 20 Nov, 2006 1 commit
  2. 16 Nov, 2006 2 commits
  3. 15 Nov, 2006 5 commits
  4. 14 Nov, 2006 5 commits
  5. 13 Nov, 2006 3 commits
  6. 12 Nov, 2006 3 commits
  7. 11 Nov, 2006 3 commits
  8. 10 Nov, 2006 15 commits
  9. 09 Nov, 2006 3 commits
    • joerg@trift2.'s avatar
      mysql-test/install_test_db.sh · dce6efd0
      joerg@trift2. authored
          Adapt to the different path of the server program, if installation was by RPM.
          Missing in the first changeset for bug#17194.
      dce6efd0
    • bar@mysql.com/bar.intranet.mysql.r18.ru's avatar
      Bug#21505 Create view - illegal mix of collation for operation 'UNION' · aa1c8a58
        
        The problem was that any VIEW columns had always implicit derivation.
        Fix: derivation is now copied from the original expression
        given in VIEW definition.
        For example:
        - a VIEW column which comes from a string constant
          in CREATE VIEW definition have now coercible derivation.
        - a VIEW column having COLLATE clause
          in CREATE VIEW definition have now explicit derivation.
      aa1c8a58
    • bar@mysql.com/bar.intranet.mysql.r18.ru's avatar
      Bug#23619 Incorrectly escaped multibyte characters in binary log break replication · a5de478d
      Problem: when embedding a character string with introducer with charset X
      into a SQL query which is generally in character set Y, the string constants
      were escaped according to their own character set (i.e.X), then after reading
      such a "mixed" query from binlog, the string constants were unescaped
      using character set of the query (i.e. Y), instead of X, which gave wrong
      results or even syntax errors with tricky charsets (e.g. sjis)
      Fix: when embedding a string constant of charset X into a query of charset Y,
      the string constant is now escaped according to character Y, instead of
      its own character set X.
      a5de478d