An error occurred fetching the project authors.
  1. 29 Dec, 2004 1 commit
  2. 10 Dec, 2004 4 commits
    • heikki@hundin.mysql.fi's avatar
      dict0dict.c, log.cc: · 713a3103
      heikki@hundin.mysql.fi authored
        Remove accidentally merged 4.0 changes
      dict0dict.c:
        Remove the 4.0 fix accidentally auto-merged to 4.1
      row0mysql.h, dict0dict.h:
        Remove a change auto-merged from 4.0
      713a3103
    • heikki@hundin.mysql.fi's avatar
      dict0dict.h, dict0dict.c, ha_innodb.cc: · ea6b5e11
      heikki@hundin.mysql.fi authored
        Fix for the 0xA0 character problem in the InnoDB FOREIGN KEY parser: if my_isspace() treats 0xA0 as space, then let InnoDB do the same; this might break some multi-byte charset id's, though for big5, ujis, sjis this seems not to change the current behavior (I checked the tables in /share/charsets); this fix must NOT be merged to 4.1 because in 4.1 everything is in UTF-8
      ea6b5e11
    • heikki@hundin.mysql.fi's avatar
      dict0dict.c: · 536702f4
      heikki@hundin.mysql.fi authored
        In the FOREIGN KEY parser, do not cut 0xC2A0 from the end of an identifier if it was quoted
      536702f4
    • heikki@hundin.mysql.fi's avatar
      dict0dict.c: · 4915d196
      heikki@hundin.mysql.fi authored
        Fix the bug that the character 0xA0 that EMS MySQL Manager in ALTER TABLE adds after a table name confuses the InnoDB FOREIGN KEY parser, causing an error 121 when we try to add a new constraint; a full fix would require the lexer to be aware of thd->charset_info() and UTF-8
      4915d196
  3. 02 Dec, 2004 1 commit
    • marko@hundin.mysql.fi's avatar
      Many files: · dd489539
      marko@hundin.mysql.fi authored
        Implement more compact InnoDB record format.
        Old format is available as CREATE TABLE ... ROW_FORMAT=DYNAMIC.
      dd489539
  4. 03 Nov, 2004 1 commit
  5. 31 Oct, 2004 1 commit
    • heikki@hundin.mysql.fi's avatar
      row0mysql.c, pars0pars.c, eval0eval.c, dict0load.c, dict0dict.c, dict0crea.c: · d22a24d8
      heikki@hundin.mysql.fi authored
        Fix bug #3478: InnoDB's FOREIGN KEY tables treated table and database names as case-insensitive; RENAME TABLE t to T would hang in an endless loop if t had a foreign key constraint defined on it
      dict0dict.c:
        Fix bug #3478: InnoDB's FOREIGN KEY tables treated table and database names as case-insensitive; RENAME TABLE t to T would hang in an endless loop if t had a foreign key constraint defined on it; fix also a hang that would occur if one tried in ALTER TABLE or RENAME TABLE to create a foreign key constraint name that collided with another existing name
      d22a24d8
  6. 18 Oct, 2004 1 commit
  7. 14 Oct, 2004 1 commit
  8. 07 Oct, 2004 1 commit
    • heikki@hundin.mysql.fi's avatar
      Many files: · 89ecfd7f
      heikki@hundin.mysql.fi authored
        Fix bug #5137: if innodb_file_per_table was specified, CREATE TEMPORARY TABLE ... TYPE=InnoDB said that cannot find path specified, and made mysqld to exit(1)
      89ecfd7f
  9. 04 Oct, 2004 1 commit
  10. 01 Oct, 2004 1 commit
  11. 16 Sep, 2004 1 commit
  12. 10 Sep, 2004 1 commit
  13. 08 Sep, 2004 1 commit
  14. 06 Aug, 2004 1 commit
  15. 17 Jun, 2004 1 commit
  16. 16 Jun, 2004 1 commit
  17. 28 May, 2004 1 commit
  18. 27 May, 2004 1 commit
    • marko@hundin.mysql.fi's avatar
      InnoDB cleanup: · fc85c80b
      marko@hundin.mysql.fi authored
      Disable log archiving code unless #ifdef UNIV_LOG_ARCHIVE
      Remove (char*) casts of string constants; add const qualifiers
      Remove some Hot Backup code unless #ifdef UNIV_HOTBACKUP
      fc85c80b
  19. 17 May, 2004 2 commits
  20. 13 May, 2004 1 commit
  21. 07 Apr, 2004 1 commit
  22. 06 Apr, 2004 1 commit
  23. 02 Apr, 2004 1 commit
  24. 01 Apr, 2004 1 commit
  25. 31 Mar, 2004 2 commits
  26. 30 Mar, 2004 1 commit
  27. 17 Mar, 2004 2 commits
  28. 13 Mar, 2004 1 commit
  29. 12 Mar, 2004 1 commit
  30. 11 Mar, 2004 1 commit
  31. 09 Feb, 2004 1 commit
    • heikki@hundin.mysql.fi's avatar
      row0mysql.c: · d9790a40
      heikki@hundin.mysql.fi authored
        Allow always DROPping of a table which is only referenced by FOREIGN KEY constraints from the same table
      Many files:
        Do not let REPLACE to perform internally an UPDATE if the table is referenced by a FOREIGN KEY: the manual says that REPLACE must resolve a duplicate key error semantically with DELETE(s) + INSERT, and not by an UPDATE; the internal update caused foreign key checks and cascaded operations to behave in a semantically wrong way
      d9790a40
  32. 08 Feb, 2004 1 commit
    • heikki@hundin.mysql.fi's avatar
      Many files: · 836e0b05
      heikki@hundin.mysql.fi authored
        Fix bug #2167: generate foreign key id's locally for each table, in the form databasename/tablename_ibfk_number; if the user gives the constraint name explicitly remember it; these changes should ensure that foreign key id's in a slave are the same as in the master, and DROP FOREIGN KEY does not break replication
      sync0sync.c:
        UNIV_SYNC_DEBUG caused assertion in the creation of the doublewrite buffer, if we do not allow thousands of latches per thread
      836e0b05
  33. 01 Feb, 2004 2 commits
    • heikki@hundin.mysql.fi's avatar
      dict0dict.c: · 7e19a8ee
      heikki@hundin.mysql.fi authored
        Change print format of FOREIGN KEY constraints spanning multiple databases to <backquote>databasename<backquote>.<backquote>tablename<backquote>; but when parsing them we must also accept <backquote>databasename.tablename<backquote>, because that was the output format in < 4.0.18
      7e19a8ee
    • heikki@hundin.mysql.fi's avatar
      dict0dict.c: · b382ee2c
      heikki@hundin.mysql.fi authored
        Change print format of FOREIGN KEY constraints spanning multiple databases to: .; but we when parsing them we must also accept , because that was the output format in < 4.0.18
      b382ee2c