An error occurred fetching the project authors.
  1. 03 Jun, 2004 1 commit
    • guilhem@mysql.com's avatar
      Implementation of WL#1824 "Add replication of character set variables in 4.1", · 86e8ecc9
      guilhem@mysql.com authored
      by binlogging some SET ONE_SHOT CHARACTER_SETetc,
      which will be enough until we have it more compact and more complete in 5.0. With the present patch,
      replication will work ok between 4.1.3 master and slaves, as long as:
      - master and slave have the same GLOBAL.COLLATION_SERVER
      - COLLATION_DATABASE and CHARACTER_SET_DATABASE are not used
      - application does not use the fact that table is created with charset of the USEd db (BUG#2326).
      all of which are not too hard to fulfill. 
      ONE_SHOT is reserved for internal use of mysqlbinlog|mysql and works only for charsets,
      so we give error if used for non-charset vars.
      Fix for BUG#3875 "mysqlbinlog produces wrong ouput  if query uses
       variables containing quotes" and BUG#3943 "Queries with non-ASCII literals are not replicated
       properly after SET NAMES".
      Detecting that master and slave have different global charsets or server ids.
      86e8ecc9
  2. 15 Apr, 2004 1 commit
  3. 05 Apr, 2004 2 commits
    • sergefp@mysql.com's avatar
      Many files: · a8386d01
      sergefp@mysql.com authored
        SQL Syntax for Prepared Statements (WL#1622)
      ps.test, ps.result:
        new file
      a8386d01
    • gluh@gluh.mysql.r18.ru's avatar
      WL1368: SHOW GRANTS FOR CURRENT USER · 8a4e6c64
      gluh@gluh.mysql.r18.ru authored
        'SHOW GRANTS' syntax is added 
        'SHOW GRANTS FOR CURRENT_USER' syntax is added
        'SHOW GRANTS FOR CURRENT_USER()' syntax is added
       CURRENT_USER without parens in expressions(SELECT CURRENT_USER;) 
      8a4e6c64
  4. 30 Mar, 2004 1 commit
  5. 04 Mar, 2004 1 commit
  6. 27 Feb, 2004 1 commit
  7. 23 Jan, 2004 2 commits
  8. 15 Jan, 2004 1 commit
    • hf@deer.(none)'s avatar
      SCRUM: · 6dcda515
      hf@deer.(none) authored
      WL#1163 (Making spatial code optional)
      Pack of changes to do in sql/ code.
      6dcda515
  9. 17 Dec, 2003 1 commit
  10. 16 Dec, 2003 1 commit
  11. 10 Dec, 2003 1 commit
  12. 02 Dec, 2003 1 commit
  13. 17 Nov, 2003 1 commit
  14. 22 Oct, 2003 1 commit
  15. 20 Oct, 2003 1 commit
  16. 15 Oct, 2003 1 commit
  17. 13 Oct, 2003 1 commit
    • heikki@hundin.mysql.fi's avatar
      Many files: · 5ec87f24
      heikki@hundin.mysql.fi authored
        ALTER TABLE ... DISCARD/IMPORT TABLESPACE
        Track crash in buf_LRU_block_remove_hashed_page + 1807 reported in MySQL-3.23.5x
      5ec87f24
  18. 15 Sep, 2003 1 commit
    • bar@bar.mysql.r18.ru's avatar
      New syntax: · 1726b4d8
      bar@bar.mysql.r18.ru authored
      CREATE TABLE t1(a NVARCHAR(10))
      This is for compatibility with MSSQL, DB2, Informix and some other DBMSs.
      
      Note, standard SQL doesn't have "NVARCHAR" syntax.
      There are only these syntaxes in SQL2003:
       NATIONAL VARCHAR
       NCHAR VARCHAR
       NATIONAL CHARACTER VARYING 
       NCHAR VARYING
      
      - Tests were added for all the above syntaxes.
      1726b4d8
  19. 13 Sep, 2003 1 commit
  20. 01 Sep, 2003 1 commit
    • dlenev@dlenev.mshome's avatar
      Implemented replication over SSL · 2486222c
      dlenev@dlenev.mshome authored
       Added proper options to CHANGE MASTER TO, new fields to SHOW SLAVE STATUS,
       Honoring this parameters during connection to master.
       Introduced new format of master.info file
      2486222c
  21. 21 Aug, 2003 1 commit
  22. 11 Aug, 2003 1 commit
  23. 12 Jul, 2003 1 commit
  24. 04 Jul, 2003 1 commit
  25. 23 Jun, 2003 1 commit
  26. 20 Jun, 2003 1 commit
  27. 19 Jun, 2003 1 commit
  28. 12 Jun, 2003 1 commit
    • igor@rurik.mysql.com's avatar
      Many files: · f547f276
      igor@rurik.mysql.com authored
        New feature: preload indexes into key cache.
      mi_preload.c:
        new file
      Many files:
        Added preload statement.
      f547f276
  29. 06 Jun, 2003 2 commits
  30. 21 May, 2003 1 commit
  31. 15 May, 2003 1 commit
    • guilhem@mysql.com's avatar
      Scrum task 845. Thi is a behaviour change : · 4a0e0062
      guilhem@mysql.com authored
      now by default, FLUSH, OPTIMIZE, ANALYZE, REPAIR commands are written to the
      binlog, unless the new NO_WRITE_TO_BINLOG keyword was used :
      OPTIMIZE NO_WRITE_TO_BINLOG table t;
      
      Previously these commands were never written to the binlog, but there are
      2 reasons to change this :
      - the RENAME TABLE in MERGE table bug (#175) on slave
      - the possible "differently optimised queries may lead to different
      updates on the master and slave" bug, until we have automatic ORDER BY.
      
      FLUSH LOGS/SLAVE/MASTER/TABLES WITH READ LOCK are never written to the binlog.
      New test for the new logging behaviour.
      Other small change : reload_acl_and_cache() and reset_slave() don't send their errors themselves,
      this is more usual.
      4a0e0062
  32. 22 Apr, 2003 1 commit
  33. 16 Apr, 2003 1 commit
  34. 10 Apr, 2003 1 commit
  35. 03 Apr, 2003 1 commit
  36. 02 Apr, 2003 1 commit
    • ram@mysql.r18.ru's avatar
      GEOMCOLLFROMWKB(), GEOMETRYCOLLECTIONFROMWKB(), · 9295366a
      ram@mysql.r18.ru authored
      LINEFROMWKB(), LINESTRINGFROMWKB(), MLINEFROMWKB(), MPOINTFROMWKB(),
      MPOLYFROMWKB(), MULTILINESTRINGFROMWKB(), MULTIPOINTFROMWKB(),
      MULTIPOLYGONFROMWKB(), POINTFROMWKB(), POLYFROMWKB(), POLYGONFROMWKB()
      functions have been added (as synonyms for GEOMFROMWKB()).
      9295366a
  37. 31 Mar, 2003 1 commit
    • bar@bar.mysql.r18.ru's avatar
      lex.h: · 76bc088b
      bar@bar.mysql.r18.ru authored
        Use MBRContains() style for what we have implemented. Contains() will be used for real "contains" relation in the future.
      76bc088b