An error occurred fetching the project authors.
  1. 26 Apr, 2005 1 commit
  2. 20 Apr, 2005 1 commit
  3. 19 Apr, 2005 1 commit
  4. 31 Mar, 2005 1 commit
  5. 24 Mar, 2005 1 commit
  6. 23 Mar, 2005 1 commit
  7. 16 Mar, 2005 1 commit
    • dlenev@brandersnatch.localdomain's avatar
      WL#874 "Extended LOAD DATA". · f1691140
      dlenev@brandersnatch.localdomain authored
      Now one can use user variables as target for data loaded from file
      (besides table's columns). Also LOAD DATA got new SET-clause in which
      one can specify values for table columns as expressions.
      
      For example the following is possible:
      LOAD DATA INFILE 'words.dat' INTO TABLE t1 (a, @b) SET c = @b + 1;
      
      This patch also implements new way of replicating LOAD DATA.
      Now we do it similarly to other queries.
      We store LOAD DATA query in new Execute_load_query event
      (which is last in the sequence of events representing LOAD DATA).
      When we are executing this event we simply rewrite part of query which
      holds name of file (we use name of temporary file) and then execute it
      as usual query. In the beggining of this sequence we use Begin_load_query
      event which is almost identical to Append_file event
      f1691140
  8. 09 Mar, 2005 1 commit
  9. 04 Mar, 2005 1 commit
  10. 02 Mar, 2005 1 commit
  11. 22 Feb, 2005 1 commit
    • monty@mysql.com's avatar
      Backport my_strntod() from 5.0 · e2dc9b40
      monty@mysql.com authored
      Change string->float conversion to delay division as long as possible.
      This gives us more exact integer->float conversion for numbers of type '123.45E+02' (Bug #7740)
      
      e2dc9b40
  12. 19 Feb, 2005 1 commit
    • monty@mysql.com's avatar
      Fixed BUILD script to use --with-berkeley-db instead of --with-bdb · 218e00ac
      monty@mysql.com authored
      Lots of small fixes to multi-precision-math path
      Give Note for '123.4e'
      Added helper functions type 'val_string_from_real()
      Don't give warnings for end space for string2decimal()
      Changed storage of values for SP so that we can detect length of argument without strlen()
      Changed interface for str2dec() so that we must supple the pointer to the last character in the buffer
      218e00ac
  13. 17 Feb, 2005 2 commits
  14. 08 Feb, 2005 1 commit
  15. 24 Jan, 2005 1 commit
  16. 15 Jan, 2005 1 commit
  17. 17 Dec, 2004 1 commit
  18. 07 Dec, 2004 1 commit
  19. 28 Nov, 2004 1 commit
  20. 26 Nov, 2004 1 commit
  21. 11 Nov, 2004 1 commit
  22. 02 Nov, 2004 1 commit
    • bar@mysql.com's avatar
      Many files: · 6a3b1d44
      bar@mysql.com authored
        Allow mixing of different character sets for more SQL functions.
      item_func.h:
        Allow mixing of different character sets for more SQL functions..
      6a3b1d44
  23. 29 Oct, 2004 1 commit
  24. 22 Oct, 2004 1 commit
  25. 13 Oct, 2004 1 commit
    • konstantin@mysql.com's avatar
      A fix and test case for Bug#5985 ""prepare stmt from "select rand(?)" · 5abc3de2
      konstantin@mysql.com authored
      crashes server." The fix makes Item_func_rand prepared-statements
      aware plus it fixes the case when RAND is used in prepared
      statements and replication is on (as well as several similar issues).
      Until now we did not reset THD before every execution of a prepared
      statement, so if some execution had set thd->time_zone_used
      or thd->rand_used they would not be reset until next mysql_parse.
      Some of post-review fixes done.
      5abc3de2
  26. 08 Oct, 2004 1 commit
  27. 28 Sep, 2004 1 commit
    • monty@mishka.local's avatar
      Strict mode & better warnings · f2941380
      monty@mishka.local authored
      Under strict mode MySQL will generate an error message if there was any conversion when assigning data to a field.
      Added checking of date/datetime fields.
      If strict mode, give error if we have not given value to field without a default value (for INSERT)
      f2941380
  28. 09 Sep, 2004 1 commit
  29. 07 Sep, 2004 2 commits
  30. 01 Sep, 2004 1 commit
  31. 31 Jul, 2004 1 commit
  32. 22 Jun, 2004 1 commit
  33. 11 Jun, 2004 1 commit
  34. 04 May, 2004 1 commit
  35. 02 Apr, 2004 1 commit
    • dlenev@jabberwock.localdomain's avatar
      WL#1266 "Separate auto-set logic from TIMESTAMP type." · f6bff2e6
      dlenev@jabberwock.localdomain authored
      Final version of patch.
      
      Adds support for specifying of DEFAULT NOW() and/or ON UPDATE NOW()
      clauses for TIMESTAMP field definition.
      Current implementation allows only one such field per table and
      uses several unireg types for storing info about this properties of
      field. It should be replaced with better implementation when new
      .frm format is introduced.
      f6bff2e6
  36. 25 Mar, 2004 1 commit
  37. 19 Mar, 2004 1 commit
  38. 18 Mar, 2004 1 commit