An error occurred fetching the project authors.
- 08 Feb, 2005 1 commit
-
-
hf@deer.(none) authored
-
- 17 Dec, 2004 1 commit
-
-
ram@gw.mysql.r18.ru authored
-
- 06 Dec, 2004 1 commit
-
-
monty@mysql.com authored
Renamed HA_VAR_LENGTH to HA_VAR_LENGTH_PART Renamed in all files FIELD_TYPE_STRING and FIELD_TYPE_VAR_STRING to MYSQL_TYPE_STRING and MYSQL_TYPE_VAR_STRING to make it easy to catch all possible errors Added support for VARCHAR KEYS to heap Removed support for ISAM Now only long VARCHAR columns are changed to TEXT on demand (not CHAR) Internal temporary files can now use fixed length tables if the used VARCHAR columns are short
-
- 02 Nov, 2004 1 commit
-
-
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
-
- 22 Oct, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 28 Sep, 2004 1 commit
-
-
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)
-
- 10 Sep, 2004 1 commit
-
-
ingo@mysql.com authored
Added code to adjust the field_length of user variables in dependence on the field type. Aded new constants for numeric field widths.
-
- 19 Aug, 2004 3 commits
-
-
pem@mysql.comhem.se authored
-
guilhem@mysql.com authored
still better names for enum; removing unneeded symbol
-
guilhem@mysql.com authored
Better names for defines, as these are visible in API
-
- 18 Aug, 2004 1 commit
-
-
guilhem@mysql.com authored
as this enum is not really usable yet (as MySQL server supports only one shutdown level), and as SHUTDOWN_DEFAULT is still left to 0, this change should disturb no user. Later (in 4.1.4 or 4.1.5) code will be pushed to implement graceful shutdown using this enum.
-
- 03 Aug, 2004 1 commit
-
-
konstantin@mysql.com authored
- client side part is simple and may be considered stable - server side part now just joggles with THD state to save execution state and has no additional locking wisdom. Lot's of it are to be rewritten.
-
- 28 Jul, 2004 1 commit
-
-
konstantin@mysql.com authored
-
- 21 Jun, 2004 2 commits
-
-
guilhem@mysql.com authored
(enum_shutdown_level is going to replace enum killed_state in 5.0).
-
guilhem@mysql.com authored
"if (thd->killed > thd->killable)", if we simply do thd->killed= level;
-
- 18 Jun, 2004 1 commit
-
-
guilhem@mysql.com authored
mysqld >=4.1.3 will however understand shutdown requests sent by clients <4.1.3. And mysqld <4.1.3 will understand shutdown requests sent by clients >=4.1.3 (it will ignore the level). Those shutdown level are just PLACEHOLDERS now. So this change is just to make the 4.1 API suitable before it is frozen. Later we will actually implement the shutdown levels.
-
- 15 Jun, 2004 2 commits
-
-
guilhem@mysql.com authored
Comments on names still welcome.
-
guilhem@mysql.com authored
Server will however still accept shutdown without specified level; so that old mysqladmin can still shut server down. I would like your comments on the names of shutdown level which I chose. You are welcome to propose better names. Please however check WL#709 before. Reason for the names I propose is to be accurate, thus leaving possibility for other levels which we may imagine in the future; that's why I have rejected names like "fast", "smart", "graceful" so far. My position is that WAIT_ALL_BUFFERS or WAIT_CRITICAL_BUFFERS say what the shutdown does, whereas for "smart", "fast" you need to remember what it does. This should be pushed in 4.1.3 but only after your comments.
-
- 26 May, 2004 1 commit
-
-
hf@deer.(none) authored
-
- 25 May, 2004 1 commit
-
-
hf@deer.(none) authored
configurations added to build the libraries with USE_TLS flag to be used for libmysqld
-
- 24 May, 2004 1 commit
-
-
konstantin@mysql.com authored
after Monty's review. - Item_param was rewritten. - it turns out that we can't convert string data to character set of connection on the fly, because they first should be written to the binary log. To support efficient conversion we need to rewrite prepared statements binlogging code first.
-
- 29 Apr, 2004 1 commit
-
-
konstantin@mysql.com authored
flag is sent to server with placeholder types. There were no need to extend the protocol as one additional byte was reserved for placeholder code, when placeholder code is in range 0-255. So this byte is now used for flags. Post-review fixes added.
-
- 05 Apr, 2004 1 commit
-
-
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
-
- 26 Mar, 2004 1 commit
-
-
bar@bar.intranet.mysql.r18.ru authored
BINARY(N) and VARBIBARY(N) 2. More 4.0 compatibility and more BINARY keyword consistency: 2a. CREATE TABLE a (a CHAR(N) BINARY) is now synonym for CREATE TABLE a (a CHAR(N) COLLATE xxxx_bin) 2b. SELECT BINARY x is still synonin for SELECT x COLLATE xxxxx_bin.
-
- 11 Dec, 2003 1 commit
-
-
monty@mysql.com authored
mysql_server_init() now returns error code if something went wrong (Bug #2062) Don't use my_fopen() when reading symlink information as this may cause problems when a lot of files are opened. Free thread keys with pthread_key_delete() instead of relying on automatic free. (Bug #2062) Fixed bug in UNION statement with alias '*'. (Bug #1249) Fixed a bug in DELETE ... ORDER BY ... LIMIT where the rows where not deleted in the proper order. (Bug #1024). FOUND_ROWS() could return incorrect number of rows after a query with an impossible WHERE condition. HOW DATABASES doesn't anymore show .sym files (on windows) that doesn't point to a valid directory. (Bug #1385)
-
- 06 Dec, 2003 1 commit
-
-
serg@serg.mylan authored
QUERY_NO_GOOD_INDEX_USED and QUERY_NO_INDEX_USED moved from thd->lex.select_lex->options to thd->server_status
-
- 27 Nov, 2003 1 commit
-
-
pem@mysql.comhem.se authored
and BUG#1966: "select 1 into a" on top-level hangs client
-
- 23 Nov, 2003 1 commit
-
-
monty@mysql.com authored
Added option --max-record-length=# to myisamchk Don't try repair twice if doing myisamchk --repair --force Shared memory handler didn't clean up things on errors or shutdown
-
- 18 Nov, 2003 1 commit
-
-
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.
-
- 29 Oct, 2003 1 commit
-
-
monty@narttu.mysql.fi authored
Don't add service name to read config file segments if it's "MySQL" Fixed possible memory leak when CHANGE USER failed.
-
- 28 Oct, 2003 1 commit
-
-
monty@narttu.mysql.fi authored
mysql --install mysql --defualts-file=path-to-file (Bug #1643)
-
- 08 Oct, 2003 1 commit
-
-
lenz@kallisto.local authored
-
- 18 Sep, 2003 2 commits
-
-
hf@deer.(none) authored
embedded library some dirty places cleaned: uint removed from mysql.h as Miguel suggested empty_string renamed as my_empty_string to get rid of name's intersections using embedded library
-
hf@deer.(none) authored
prepared statements in embedded library
-
- 13 Sep, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 03 Sep, 2003 1 commit
-
-
serg@serg.mylan authored
-
- 27 Aug, 2003 1 commit
-
-
jani@rhols221.adsl.netsonic.fi authored
and --defaults-file is a non-existing or non-regular file. Bug#755
-
- 18 Aug, 2003 1 commit
-
-
monty@mashka.mysql.fi authored
Use server character set if --default-character-set is not used Added convert_string() for more efficient alloc+character-set convert of strings
-
- 18 Jul, 2003 1 commit
-
-
kostja@oak.local authored
Now special 1-byte packet is used for request of old password Fixed bug with --skip-grant-tables and acl_getroot
-
- 08 Jul, 2003 1 commit
-
-
venu@myvenu.com authored
-