1. 01 Aug, 2006 3 commits
  2. 31 Jul, 2006 6 commits
  3. 30 Jul, 2006 2 commits
  4. 29 Jul, 2006 1 commit
    • unknown's avatar
      Fix for bug #16226 (timestamp_diff truncation issue when requesting · 32fbc6da
      unknown authored
      difference between timestamp in values of months and quarters.)
      
      Problem:  when requesting timestamp diff in months or quarters, it
      would only examine the date (and not the time) for the comparison.
      
      Solution:  increased precision of comparison.
      
      
      mysql-test/r/func_time.result:
        Additional test results
      mysql-test/t/func_time.test:
        Additional tests
      sql/item_timefunc.cc:
        Fix for timestamp diff issue.  Added microsecond precision when
        comparing months or quarters; previously only examined date for
        these comparisons.
      32fbc6da
  5. 27 Jul, 2006 3 commits
  6. 26 Jul, 2006 4 commits
    • unknown's avatar
      Merge neptunus.(none):/home/msvensson/mysql/my50-m-bug20145 · 6528be27
      unknown authored
      into  neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
      
      
      6528be27
    • unknown's avatar
      Update test result for perror · 595fdd6b
      unknown authored
      
      mysql-test/r/perror.result:
        Add error result for 1186
        Remove the result for the others
      mysql-test/t/perror.test:
        As it's only just interesting to see that perror doesn't crash(and as result varies across platforms), send result to /dev/null
      595fdd6b
    • unknown's avatar
      Bug#16561 Unknown ERROR msg "ERROR 1186 (HY000): Binlog closed" by perror · de41f4e7
      unknown authored
       - Since error 1186 is not found among NDB error codes, the message retuned should indicate that.
      
      
      extra/perror.c:
        Move the !found out one level
      mysql-test/t/perror.test:
        Add test case for bug#16561
      ndb/src/kernel/error/ndbd_exit_codes.c:
        Check not only for zero size string but also classification "unknown error" when looking for an error mesage for an error code
      de41f4e7
    • unknown's avatar
      Bug#19890 mysqltest: "query" command is broken · b03b6c86
      unknown authored
       - Allow "query" to be used as a prefix for focing a command to be sent to server
       - Add testcases
      
      
      client/mysqltest.c:
        To force something being sent as a query to the mysqld one can
        use the prefix "query". Remove "query" from string before executing.
      mysql-test/r/mysqltest.result:
        Add test case for "query" command
      mysql-test/t/mysqltest.test:
        Add test case for "query" command
      b03b6c86
  7. 24 Jul, 2006 7 commits
  8. 23 Jul, 2006 6 commits
  9. 21 Jul, 2006 1 commit
  10. 20 Jul, 2006 5 commits
  11. 19 Jul, 2006 1 commit
    • unknown's avatar
      Bug #14448: delimiter in 'prompt' · 63a098f3
      unknown authored
      "I want to have the current delimiter in the prompt so that I can know at 
      a glance which is set."
      
      Add a 'l' format specifier that represents the current statement delimiter.
      
      
      client/mysql.cc:
        Add a 'l' prompt format specifier, which becomes the current delimiter
        string in the prompt.
      63a098f3
  12. 18 Jul, 2006 1 commit
    • unknown's avatar
      Bug #19498: Inconsistent support for DEFAULT in TEXT columns · 20c2ddaf
      unknown authored
        When a default of '' was specified for TEXT/BLOB columns, the specification
        was silently ignored. This is presumably to be nice to applications (or
        people) who generate their column definitions in a not-very-clever fashion.
      
        For clarity, doing this now results in a warning, or an error in strict
        mode.
      
      
      mysql-test/r/federated.result:
        Update results
      mysql-test/r/fulltext_distinct.result:
        Update results
      mysql-test/r/fulltext_update.result:
        Update results
      mysql-test/r/gis-rtree.result:
        Update results
      mysql-test/r/gis.result:
        Update results
      mysql-test/r/join_outer.result:
        Update results
      mysql-test/r/order_by.result:
        Update results
      mysql-test/r/type_blob.result:
        Add new results
      mysql-test/r/type_ranges.result:
        Update results
      mysql-test/t/type_blob.test:
        Add new test
      sql/field.cc:
        Issue a warning when setting '' as the default on a BLOB/TEXT column,
        and make it an error in strict mode. Also, clarify comments about when
        NO_DEFAULT_VALUE_FLAG is set.
      20c2ddaf