1. 10 Nov, 2006 2 commits
  2. 09 Nov, 2006 1 commit
    • unknown's avatar
      Bug#20691: DATETIME col (NOT NULL, NO DEFAULT) may insert garbage when \ · 04195329
      unknown authored
      	specifying DEFAULT
      
      This was not specific to datetime.  When there is no default value 
      for a column, and the user inserted DEFAULT, we would write 
      uninitialized memory to the table.  
      
      Now, insist on writing a default value, a zero-ish value, the same 
      one that comes from inserting NULL into a not-NULL field.
      
      (This is, at best, really strange behavior that comes from allowing 
      sloppy usage, and serves as a good reason always to run one's server 
      in a strict SQL mode.)
      
      
      mysql-test/r/default.result:
        Verify that all kinds of types work, even others other than datetime.
      mysql-test/t/default.test:
        Verify that all kinds of types work, even others other than datetime.
      sql/item.cc:
        Even if we warn that there is no default value in the table definition,
        we have to insert /something/.
      04195329
  3. 08 Nov, 2006 7 commits
    • unknown's avatar
      Merge zippy.cornsilk.net:/home/cmiller/work/mysql/bug10963/my51-bug10963 · 04af52e3
      unknown authored
      into  zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.1-maint
      
      04af52e3
    • unknown's avatar
      Merge zippy.cornsilk.net:/home/cmiller/work/mysql/bug10963/my50-bug10963 · 66ef11ee
      unknown authored
      into  zippy.cornsilk.net:/home/cmiller/work/mysql/bug10963/my51-bug10963
      
      
      mysql-test/r/func_str.result:
        Auto merged
      mysql-test/t/func_str.test:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/item_strfunc.cc:
        Auto merged
      66ef11ee
    • unknown's avatar
      Bug#10963: LEFT/RIGHT/SUBSTR/.. string functions returns wrong result \ · a86a98ba
      unknown authored
        on large length
        
      Problem:  Most (all) of the numeric inputs were being coerced into
      int (32 bit) sized variables.  Works OK for sane inputs; any input
      larger than 2^32 (or 2^31 for signed vars) exihibited predictable
      wrapping behavior (up to about 10^18) and then started having really
      strange behaviour past that point (since the conversion to 64 bit int
      from the DECIMAL type can do weird things on out of range numbers).
      
      Solution: 1)  Add many tests.  2)  Convert input from (u)long type to
      (u)longlong.  3)  Do (sometimes multiple) sanity checks on input,
      keeping in mind that sometimes a negative longlong is not a negative
      longlong (if the unsigned_flag is set).  4) Emulate existing behavior
      w/rt negative and "small" out-of-bounds values.
      
      
      mysql-test/r/func_str.result:
        Additional test results for #10963
      mysql-test/t/func_str.test:
        Additional test results for #10963
      sql/item_func.cc:
        Used larger type for counting, to avoid truncation.
      sql/item_strfunc.cc:
        Fix for #10963, including comments and cleaned up logic
      a86a98ba
    • unknown's avatar
      Merge ted.mysql.internal:/home/ted/src/mysql/mysql-5.0-maint · 0eac30d9
      unknown authored
      into  ted.mysql.internal:/home/ted/src/mysql/mysql-5.1-new-maint
      
      
      mysql-test/mysql-test-run.pl:
        Auto merged
      mysql-test/r/im_daemon_life_cycle.result:
        Auto merged
      mysql-test/t/im_daemon_life_cycle.imtest:
        Auto merged
      vio/viosslfactories.c:
        Auto merged
      0eac30d9
    • unknown's avatar
      Merge ted.mysql.internal:/home/ted/src/mysql/50-gca · 078eaf85
      unknown authored
      into  ted.mysql.internal:/home/ted/src/mysql/mysql-5.0-maint
      
      078eaf85
    • unknown's avatar
      Merge ted.mysql.internal:/home/ted/src/mysql/50-gca · 18deae4d
      unknown authored
      into  ted.mysql.internal:/home/ted/src/mysql/mysql-5.1-new-maint
      
      
      client/mysql_upgrade.c:
        Auto merged
      18deae4d
    • unknown's avatar
      BUG#20100 fix: mysql_upgrade modified to also accept all · da368938
      unknown authored
      the communication parameters from the command line
      and pass 'em correctly to both mysqlcheck and mysql
      
      
      client/mysql_upgrade.c:
        Now mysql_upgrade passes all the parameters specified on 
        the command line to both mysqlcheck and mysql through 
        the upgrade_defaults file
      da368938
  4. 07 Nov, 2006 18 commits
  5. 06 Nov, 2006 4 commits
  6. 04 Nov, 2006 6 commits
  7. 03 Nov, 2006 2 commits
    • unknown's avatar
      Fiexes for --stress mode in mysql-test-run.pl · 168df93a
      unknown authored
      
      mysql-test/lib/mtr_stress.pl:
        "stop_masters" function renamed to "stop_all_servers"
        "path_mysock" renamed to "path_sock"
      168df93a
    • unknown's avatar
      Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint · ea225358
      unknown authored
      into  neptunus.(none):/home/msvensson/mysql/mysql-5.1-new-maint
      
      
      client/mysql.cc:
        Auto merged
      client/mysqltest.c:
        Auto merged
      configure.in:
        Auto merged
      mysql-test/lib/mtr_process.pl:
        Auto merged
      mysql-test/include/mix1.inc:
        Auto merged
      mysql-test/r/innodb_mysql.result:
        Auto merged
      mysql-test/r/mysql.result:
        Auto merged
      mysql-test/t/mysql.test:
        Auto merged
      mysql-test/t/ps.test:
        Auto merged
      mysys/mf_iocache.c:
        Auto merged
      mysys/my_lock.c:
        Auto merged
      sql/handler.cc:
        Auto merged
      sql/sql_delete.cc:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      sql/table.cc:
        Auto merged
      storage/myisam/sort.c:
        Auto merged
      tests/mysql_client_test.c:
        Auto merged
      ea225358