1. 18 Feb, 2009 6 commits
    • Mattias Jonsson's avatar
      Bug#36001: Partitions: spelling and using some error messages · 9c27628b
      Mattias Jonsson authored
      Backport from 6.0
      
      Changed error message to show that it is partitioning
      that does not support foreign keys yet.
      
      Changed spelling from British english to American english.
      
      mysql-test/r/partition.result:
        Bug#36001: Partitions: spelling and using some error messages
        
        Backport from 6.0
        
        Changed spelling from British english to American english.
      mysql-test/r/partition_mgm_err.result:
        Bug#36001: Partitions: spelling and using some error messages
        
        Backport from 6.0
        
        Changed spelling from British english to American english.
      mysql-test/t/partition.test:
        Bug#36001: Partitions: spelling and using some error messages
        
        Backport from 6.0
        
        Added test for verifying error message
      sql/share/errmsg.txt:
        Bug#36001: Partitions: spelling and using some error messages
        
        Backport from 6.0
        
        Changed spelling from British english to American english.
      sql/sql_table.cc:
        Bug#36001: Partitions: spelling and using some error messages
        
        Backport from 6.0
        
        Using a better error message.
      9c27628b
    • Sergey Glukhov's avatar
      5.0->bugteam->5.1-bugteam merge · 1f512580
      Sergey Glukhov authored
      1f512580
    • Sergey Glukhov's avatar
      automerge · a532e6db
      Sergey Glukhov authored
      a532e6db
    • Georgi Kodinov's avatar
      merge of bug 26724 to 5.1-bugteam · 33e901d8
      Georgi Kodinov authored
      33e901d8
    • Georgi Kodinov's avatar
      Bug #26724: mysql command line client, ignores input to internal cmd after space · f715c458
      Georgi Kodinov authored
            
      Removed the misleading "NOTE:" from the \h command. 
      
      client/mysql.cc:
        Bug #26724: removed the misleading note from the \h command
      f715c458
    • Vladislav Vaintroub's avatar
      merge · 016e22cd
      Vladislav Vaintroub authored
      016e22cd
  2. 17 Feb, 2009 1 commit
  3. 16 Feb, 2009 7 commits
  4. 15 Feb, 2009 3 commits
  5. 14 Feb, 2009 12 commits
  6. 13 Feb, 2009 11 commits
    • Patrick Crews's avatar
      BUG#32667: lowercase_table3.test reports to error log · 1bec8385
      Patrick Crews authored
      Cleaned up SQL code in the test.
      Needed to move the FLUSH TABLES statement prior to the DROP TABLE t1 to prevent a warning of
      Table open on delete and a test fail.
      1bec8385
    • Davi Arnaut's avatar
      Empty merge. · eeb323b8
      Davi Arnaut authored
      eeb323b8
    • Davi Arnaut's avatar
      Remove test case for bug 40264. · aa8645bb
      Davi Arnaut authored
      Dirty close tricky does not work on Windows.
      
      mysql-test/r/query_cache_notembedded.result:
        Remove test case result.
      mysql-test/t/query_cache_notembedded.test:
        Remove test case.
      aa8645bb
    • Tatiana A. Nurnberg's avatar
      auto-merge · d421fd4f
      Tatiana A. Nurnberg authored
      d421fd4f
    • Matthias Leich's avatar
    • Tatiana A. Nurnberg's avatar
      Bug#42146 - DATETIME fractional seconds parse error · eeef9533
      Tatiana A. Nurnberg authored
      Bug#38435 - LONG Microseconds cause MySQL to fail a CAST to DATETIME or DATE
      
      Parsing of optional microsecond part in datetime did not
      fail gracefully when field width was larger than the allowed
      six places.
      
      Now handles up to the correct six places, and disregards
      any extra digits without messing up what we've already got.
      
      mysql-test/r/type_datetime.result:
        show graceful handling of overly long microsecond parts
        (correct truncation).
      mysql-test/t/type_datetime.test:
        show graceful handling of overly long microsecond parts
        (correct truncation).
      sql-common/my_time.c:
        Special case for time-parsing: for microsecond part,
        leading zeroes are actually meaningful! Also, don't
        break the entire date on more than the allowed six
        digits in microsecond part, just truncate the extra
        digits.
      eeef9533
    • Alexey Kopytov's avatar
      Merge from team tree · 6eae5538
      Alexey Kopytov authored
      6eae5538
    • Alexey Kopytov's avatar
      ec31d1f5
    • Andrei Elkin's avatar
      merging from the main to a local branch · b55f6391
      Andrei Elkin authored
      b55f6391
    • Alexey Kopytov's avatar
      Merge from dev tree. · 5127be1c
      Alexey Kopytov authored
      5127be1c
    • Rafal Somla's avatar
      Modifications to MTR and mysqltest to improve feedback from the latter when · f33c6297
      Rafal Somla authored
      testcase checks are made.
            
      MTR spawns mysqltest to run check-testcase test before and after each testcase 
      it runs. It can also run check-warnings using mysqltest. Since it happened on PB 
      that these checks hanged, this patch provides additional feedback to help 
      investigating such failures:
            
      - mysqltest is modified to give feedback about main steps in execution of a 
      testcase if run in verbose mode (including connection to the server),
           
      - MTR is modified to run mysqltest in verbose mode when doing check-testcase or 
      check-warnings. The diagnostic output from mysqltest is preserved so that it is 
      saved upon test failure.
      
      client/mysqltest.cc:
        Add verbose messages informing about main steps in execution of a testcase.
      mysql-test/mysql-test-run.pl:
        - When doing check-testcase or check-warnings run mysqltest in verbose mode.
        - Do not delete the mysqltest's error log if errors are detected during these
      f33c6297