An error occurred fetching the project authors.
  1. 23 Feb, 2005 1 commit
  2. 14 Dec, 2004 1 commit
  3. 02 Nov, 2004 1 commit
    • monty@mysql.com's avatar
      Remove usage of !$ from mysql-tests · 2185f1a5
      monty@mysql.com authored
      Added protocol::flush() for easier embedded-server code
      Increase block allocation variables a bit as they where a bit too small for MySQL 4.1
      Added option --silent to client_test
      2185f1a5
  4. 29 Oct, 2004 1 commit
  5. 26 Oct, 2004 1 commit
    • monty@mysql.com's avatar
      A lot of fixes for prepared statements (PS): · 6fbc869d
      monty@mysql.com authored
      New mysqltest that can run mysqltest with PS
      Added support for ZEROFILL in PS
      Fixed crash when one called mysql_stmt_store_result() without a preceding mysql_stmt_bind_result()
      Updated test cases to support --ps-protocol
      (Some tests are still run using old protocol)
      Fixed crash in PS when using SELECT * FROM t1 NATURAL JOIN t2...
      Fixed crash in PS when using sub queries
      Create table didn't signal when table was created. This could cause a "DROP TABLE created_table" in another thread to wait "forever"
      Fixed wrong permissions check in PS and multi-table updates (one could get permission denied for legal quries)
      Fix for PS and SELECT ... PROCEDURE
      Reset all warnings when executing a new PS query
      group_concat(...ORDER BY) didn't work with PS
      Fixed problem with test suite when not using innodb
      6fbc869d
  6. 15 Oct, 2004 1 commit
  7. 26 Aug, 2004 1 commit
  8. 19 Aug, 2004 1 commit
  9. 08 Jun, 2004 1 commit
  10. 24 May, 2004 1 commit
  11. 06 Apr, 2004 2 commits
  12. 05 Apr, 2004 1 commit
    • monty@mysql.com's avatar
      Fixed many compiler warnings · 42cf92ce
      monty@mysql.com authored
      Fixed bugs in group_concat with ORDER BY and DISTINCT (Bugs #2695, #3381 and #3319)
      Fixed crash when doing rollback in slave and the io thread catched up with the sql thread
      Set locked_in_memory properly
      42cf92ce
  13. 10 Feb, 2004 1 commit
  14. 09 Feb, 2004 1 commit
  15. 19 Dec, 2003 1 commit
  16. 08 Dec, 2003 1 commit
  17. 28 Nov, 2003 1 commit
    • monty@mysql.com's avatar
      Added missing SSL library (Should be in source distribution) · ede8169d
      monty@mysql.com authored
      Fixed compiler warnings (a lot of hidden variables detected by the Forte compiler)
      Added a lot of 'version_xxx' strings to 'show variables'
      Prevent copying of TMP_TABLE_PARAM (This caused core dump bug on Solaris)
      Fixed problem with printing sub selects to debug log
      ede8169d
  18. 20 Nov, 2003 1 commit
  19. 18 Nov, 2003 1 commit
    • monty@mashka.mysql.fi's avatar
      CLIENT_MULTI_QUERIES -> CLIENT_MULTI_STATEMENTS · cab1dc62
      monty@mashka.mysql.fi authored
      New multi-key-cache handling. This was needed becasue the old one didn't work reliable with MERGE tables.
      ALTER TABLE table_name ... CHARACTER SET  ... now changes all char/varchar/text columns to the given character set
      (One must use ALTER TABLE ... DEFAULT CHARACTER SET ... to change the default character set)
      Fixed that have_compress is detected properly (fixes problems with func_compress.test on platforms without zlib)
      New syntax for CACHE INDEX ('keys' is optional if no index name is given and one mentions the key cache name only ones)
      Removed compiler warnings
      Added mysql_set_server_option() to allow clients like PHP to easaily set/reset the multi-statement flag.
      cab1dc62
  20. 04 Nov, 2003 1 commit
  21. 03 Nov, 2003 1 commit
    • monty@narttu.mysql.fi's avatar
      Simplified 'wrong xxx name' error messages by introducing 'general' ER_WRONG_NAME error · a444a344
      monty@narttu.mysql.fi authored
      Cleaned up (and disabled part of) date/time/datetime format patch. One can't anymore change default read/write date/time/formats.
      This is becasue the non standard datetime formats can't be compared as strings and MySQL does still a lot of datetime comparisons as strings
      Changed flag argument to str_to_TIME() and get_date() from bool to uint
      Removed THD from str_to_xxxx functions and Item class.
      Fixed core dump when doing --print-defaults
      Move some common string functions to strfunc.cc
      Dates as strings are now of type my_charset_bin instead of default_charset()
      Introduce IDENT_QUOTED to not have to create an extra copy of simple identifiers (all chars < 128)
      Removed xxx_FORMAT_TYPE enums and replaced them with the old TIMESTAMP_xxx enums
      Renamed some TIMESTAMP_xxx enums to more appropriate names
      Use defines instead of integers for date/time/datetime string lengths
      Added to build system and use the new my_strtoll10() function.
      a444a344
  22. 20 Oct, 2003 1 commit
  23. 18 Sep, 2003 1 commit
    • hf@deer.(none)'s avatar
      SCRUM · 7dd4cb58
      hf@deer.(none) authored
      prepared statements in embedded library
      7dd4cb58
  24. 17 Sep, 2003 1 commit
    • hf@deer.(none)'s avatar
      SCRUM: · ddbca417
      hf@deer.(none) authored
      prepared statements in embedded library
      ddbca417
  25. 03 Sep, 2003 1 commit
  26. 23 Jul, 2003 1 commit
  27. 18 Jul, 2003 2 commits
  28. 08 Jul, 2003 1 commit
  29. 25 Jun, 2003 1 commit
  30. 23 Jun, 2003 1 commit
  31. 18 Jun, 2003 1 commit
    • hf@deer.(none)'s avatar
      SCRUM · 7e1ce534
      hf@deer.(none) authored
      including client code into embedded server
      code to guess what library to use added
      net_field_length moved to pack.c
      7e1ce534
  32. 17 Jun, 2003 1 commit
    • hf@deer.(none)'s avatar
      SCRUM · c4e3a624
      hf@deer.(none) authored
      client capabilities included into libmysqld
      some API methods became "virtual"
      lots of duplicated code removed
      
      IMHO all the above made library's code way more pleasant to look at, didn't it?
      c4e3a624
  33. 14 Jun, 2003 1 commit
  34. 04 Jun, 2003 1 commit
    • monty@narttu.mysql.fi's avatar
      Added SQLSTATE to client/server protocol · 23145cfe
      monty@narttu.mysql.fi authored
      bmove_allign -> bmove_align
      Added OLAP function ROLLUP
      Split mysql_fix_privilege_tables to a script and a .sql data file
      Added new (MEMROOT*) functions to avoid calling current_thd() when creating some common objects.
      Added table_alias_charset, for easier --lower-case-table-name handling
      Better SQL_MODE handling (Setting complex options also sets sub options)
      New (faster) assembler string functions for x86
      23145cfe
  35. 30 May, 2003 1 commit
  36. 26 May, 2003 1 commit
  37. 21 May, 2003 1 commit
    • bar@bar.mysql.r18.ru's avatar
      Some SHOW VARIABLES have been renamed: · 8d52377a
      bar@bar.mysql.r18.ru authored
      collation_client  -> character_set_client
      collation_results -> character_set_results
      character_set     -> character_set_server
      
      SET NAMES now doesn't start client->server conversion
      SET CHARACTER SET now starts both client->server and server->client conversion
      8d52377a
  38. 23 Apr, 2003 1 commit