An error occurred fetching the project authors.
  1. 27 Nov, 2007 1 commit
  2. 26 Nov, 2007 1 commit
    • ramil/ram@mysql.com/ramil.myoffice.izhnet.ru's avatar
      Fix for bug #29258: Partitions: search fails for maximum unsigned bigint · beff6193
      Problems: 
        1. looking for a matching partition we miss the fact that the maximum 
           allowed value is in the PARTITION p LESS THAN MAXVALUE.
        2. one can insert maximum value if numeric maximum value is the last range.
           (should only work if LESS THAN MAXVALUE).
        3. one cannot have both numeric maximum value and MAXVALUE string as ranges 
          (the same value, but different meanings).
      
      Fix: consider the maximum value as a supremum.
      beff6193
  3. 15 Nov, 2007 1 commit
  4. 12 Nov, 2007 2 commits
  5. 10 Nov, 2007 1 commit
  6. 31 Oct, 2007 1 commit
  7. 23 Oct, 2007 1 commit
    • mattiasj@mattiasj-laptop.(none)'s avatar
      Bug #30695: An apostrophe ' in the comment of the ADD PARTITION · f733ea5a
      mattiasj@mattiasj-laptop.(none) authored
        causes the Server to crash.
      
      Accessing partitioned table with an apostrophe in partition options
      like DATA DIRECTORY, INDEX DIRECTORY or COMMENT causes server crash.
      
      Partition options were saved in .frm file without escaping.
      When accessing such table it is not possible to properly restore
      partition information.
      Crashed because there was no check for partition info parser failure.
      
      Fixed by escaping quoted text in the partition info when writing it to
      the frm-file and added a check that it was able to parse the partition
      info before using it 
      
      NOTE: If the comment is written by an earlier version of the server,
      the corrupted frm-file is not fixed, but left corrupted, you have to
      manually drop the table and recreate it.
      f733ea5a
  8. 22 Oct, 2007 1 commit
    • mleich@four.local.lan's avatar
      This changeset contains the following stuff: · 51fd4937
      mleich@four.local.lan authored
      - Fix for
          Bug#28827 Partition test needs archive engine
          Bug#26669 Two tests on partition fail while blackhole engine is missing
        Solution: Move ARCHIVE and BLACKHOLE sub test cases to their own main test.
      - The two bugs above + the fact that CSV could be also sometimes not
        available --> Move also CSV sub tests out.
      - Minor cleanups
        - Replace error numbers with error names
        - fix typos, wrong comments
        - remove redundant sub test cases
        - add missing drop database
        - SET GLOBAL general_log = default is wrong, = 1 is correct
      51fd4937
  9. 17 Oct, 2007 1 commit
  10. 09 Oct, 2007 1 commit
  11. 04 Oct, 2007 1 commit
  12. 02 Jul, 2007 1 commit
  13. 08 Jun, 2007 1 commit
    • gkodinov/kgeorge@magare.gmz's avatar
      Bug #27816: Log tables ran with partitions crashes the server · 949d96f1
      gkodinov/kgeorge@magare.gmz authored
       when logging is enabled.
      Currently the partition engine doesn't allow log tables to
      be partitioned. But this was not checked and the server crashed.
      Fixed by adding a check in ALTER TABLE to disable partitioning the
      log tables.
      While working on the cause of the problem improved the way the log
      thread structures are initialized before opening the log tables.
      949d96f1
  14. 07 Jun, 2007 1 commit
    • ramil/ram@mysql.com/ramil.myoffice.izhnet.ru's avatar
      Fix for bug #28806: Running SHOW TABLE STATUS during high INSERT load crashes server · 46f68b22
      Problem: getting an autoincrement value for a partition table in the ::info() method we call
      the get_auto_increment() for all partitions. That may cause a problem for at least MyISAM
      tables that rely on some table state (in this particular case table->naxt_nuber_field is 
      set to 0 in the mysql_insert() and we get a crash). 
      Moreover, calling get_auto_increment() is superfluous there.
      
      Fix: use ::info(HA_STATUS_AUTO) calls to get autoincrement values for partitions instead of
      get_auto_increment() ones in the ha_partition::info().
      46f68b22
  15. 04 Jun, 2007 1 commit
    • gkodinov/kgeorge@macbook.gmz's avatar
      Bug #28488: Incorrect information in file: './test/t1_test#.frm' · f081188f
      gkodinov/kgeorge@macbook.gmz authored
      While executing ALTER TABLE ... PARTITION the server uses 
      a temporary "shadow" table to create the updated table.
      This shadow table then gets renamed as the original table.
      The shadow table was not prefixed with the special prefix that
      marks temporary tables so it was picked up by SHOW TABLE STATUS.
      Fixed by isolating the code to create the shadow table name in a
      separate function and prefixing the shadow table name with the
      special prefix to exclude it from the list of user tables.
      See bug 18775 and WL1324 for details.
      f081188f
  16. 06 May, 2007 1 commit
  17. 23 Apr, 2007 1 commit
    • iggy@recycle.(none)'s avatar
      Bug#25141 Crash Server on Partitioning command · 2a54abd5
      iggy@recycle.(none) authored
      - The function build_table_filename() builds up a string unconditionally 
      using the forward slash as a path separator. Later, when the string is 
      searched for FN_LIBCHAR by the set_up_table_before_create() function, a 
      null pointer is returned that is finally used by strlen in the 
      append_file_to_dir() function which causes the crash.
      2a54abd5
  18. 19 Apr, 2007 1 commit
  19. 29 Mar, 2007 1 commit
  20. 27 Mar, 2007 1 commit
    • holyfoot/hf@mysql.com/hfmain.(none)'s avatar
      Bug #27084 partitioning by list seems failing when using case · 576f2f84
      holyfoot/hf@mysql.com/hfmain.(none) authored
      creation of the partitioned table could fail as we created Item-s for
      it's list function in thd->mem_root, and then do Item->fix_fields
      in the context of other table->mem_root (so that memory alloced
      there was alloced in this table->mem_root). As we freed the
      table->mem_root before we do thd->free_items, our Item-s had
      pointers to the freed memory, that caused the crash
      576f2f84
  21. 10 Mar, 2007 1 commit
  22. 12 Jan, 2007 1 commit
    • holyfoot/hf@mysql.com/deer.(none)'s avatar
      bug #24186 (nested query across partitions returns fewer records) · 3fd278c9
      holyfoot/hf@mysql.com/deer.(none) authored
      Subselect's engine checks table->status field to determine if the
      record was properly found when we use keyread upon the table.
      Partition engine checks all the partitions for given key
      before return. So if matching record was found in the first
      partition and no matching records were found in the second, 
      we have table->status == NOT_FOUND after the function, what
      makes subselects to skip matching records.
      The patch adds table->status= 0 if we actually found something.
      3fd278c9
  23. 18 Dec, 2006 1 commit
  24. 05 Oct, 2006 1 commit
  25. 01 Oct, 2006 1 commit
  26. 29 Sep, 2006 1 commit
  27. 26 Sep, 2006 1 commit
  28. 08 Sep, 2006 1 commit
  29. 31 Aug, 2006 1 commit
  30. 22 Aug, 2006 1 commit
  31. 16 Aug, 2006 1 commit
  32. 08 Aug, 2006 2 commits
  33. 07 Aug, 2006 2 commits
  34. 05 Aug, 2006 1 commit
  35. 31 Jul, 2006 1 commit
  36. 17 Jul, 2006 1 commit
  37. 15 Jul, 2006 1 commit