An error occurred fetching the project authors.
- 21 Jan, 2005 1 commit
-
-
bar@mysql.com authored
SHOW KEYS FROM t1 now displays number of characters in Sub_part, not number of bytes, to be compatible with SHOW CREATE TABLE.
-
- 10 Jan, 2005 1 commit
-
-
serg@serg.mylan authored
-
- 08 Jan, 2005 1 commit
-
-
jimw@mysql.com authored
tables that support multiple index types. (Bug #7235)
-
- 09 Dec, 2004 1 commit
-
-
dlenev@brandersnatch.localdomain authored
tables requires privileges for them if some table or column level grants present" (with after-review fixes). We should set SELECT_ACL for implicitly opened tables in my_tz_check_n_skip_implicit_tables() to be able to bypass privilege checking in check_grant(). Also we should exclude those tables from privilege checking in multi-update.
-
- 02 Dec, 2004 1 commit
-
-
bar@mysql.com authored
A test doesn't seem to be possible.
-
- 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
-
- 29 Oct, 2004 1 commit
-
-
bar@mysql.com authored
"uint *errors" is now a non-optional parameter in String:copy() and copy_and_convert().
-
- 25 Oct, 2004 1 commit
-
-
bar@mysql.com authored
-
- 19 Oct, 2004 1 commit
-
-
monty@mishka.local authored
Simple optimzations and cleanups Removed compiler warnings and fixed portability issues Added client functions 'mysql_embedded()' to allow client to check if we are using embedded server Fixes for purify
-
- 07 Oct, 2004 1 commit
-
-
monty@mysql.com authored
Some bigger code changes was necessary becasue of the multi-table-update and the new HANDLER code
-
- 04 Oct, 2004 1 commit
-
-
bar@mysql.com authored
ctype_recode does not hang anymore. Small fix after Marko's change.
-
- 01 Oct, 2004 2 commits
-
-
dlenev@brandersnatch.localdomain authored
column types TIMESTAMP is NOT NULL by default, so in order to have TIMESTAMP column holding NULL valaues you have to specify NULL as one of its attributes (this needed for backward compatibility). Main changes: Replaced TABLE::timestamp_default_now/on_update_now members with TABLE::timestamp_auto_set_type flag which is used everywhere for determining if we should auto-set value of TIMESTAMP field during this operation or not. We are also use Field_timestamp::set_time() instead of handler::update_timestamp() in handlers.
-
marko@hundin.mysql.fi authored
-
- 26 Sep, 2004 1 commit
-
-
magnus@shellback.(none) authored
* Changed the implementation of ndbcluster_find_files to be more efficient, using only one mutex lock * Moved ha_find_files to end of mysql_find_files so that it can be passed the list that we are interested to find.
-
- 25 Sep, 2004 1 commit
-
-
rburnett@build.mysql.com authored
sql_show.cc: Made change suggested by Serge. REmoved else in mysql_find_files so symlink files fall through to the wildcard check
-
- 24 Sep, 2004 2 commits
-
-
bar@noter.intranet.mysql.r18.ru authored
Logging to logging@openlogging.org accepted sql_show.cc, type_enum.test, type_enum.result: Bug #5628 German characters in field-defs will be '?' with some table definitions
-
rburnett@build.mysql.com authored
sql_show.cc: Added wild card check to symdir block in mysql_find_files
-
- 21 Sep, 2004 1 commit
-
-
magnus@neptunus.(none) authored
Changed WL#1424 to use the function ha_find_files. This is a simpler implementation and all handler specific code is hidden in the appropriate handler.
-
- 13 Sep, 2004 1 commit
-
-
magnus@neptunus.(none) authored
-
- 11 Aug, 2004 1 commit
-
-
bar@mysql.com authored
Bug#4417: SHOW CREATE TABLE and SHOW COLUMNS now return consistent results when "SET NAMES BINARY", i.e. everything is sent in UTF8: column names, enum values, default values.
-
- 10 Jul, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 08 Jul, 2004 1 commit
-
-
monty@mysql.com authored
New handler::index_flags() definition to make it easy to check the full used key and a specific key part. Added key part to optimize_range() to fix problems when using fields in key parts.
-
- 30 Jun, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 24 Jun, 2004 1 commit
-
-
bar@mysql.com authored
-
- 18 Jun, 2004 1 commit
-
-
dlenev@brandersnatch.localdomain authored
Added basic per-thread time zone functionality (based on public domain elsie-code). Now user can select current time zone (from the list of time zones described in system tables). All NOW-like functions honor this time zone, values of TIMESTAMP type are interpreted as values in this time zone, so now our TIMESTAMP type behaves similar to Oracle's TIMESTAMP WITH LOCAL TIME ZONE (or proper PostgresSQL type). WL#1266 "CONVERT_TZ() - basic time with time zone conversion function". Fixed problems described in Bug #2336 (Different number of warnings when inserting bad datetime as string or as number). This required reworking of datetime realted warning hadling (they now generated at Field object level not in conversion functions). Optimization: Now Field class descendants use table->in_use member instead of current_thd macro.
-
- 08 Jun, 2004 1 commit
-
-
bar@bar.intranet.mysql.r18.ru authored
-
- 29 May, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 28 May, 2004 1 commit
-
-
hf@deer.(none) authored
empty recordset where some records should be found)
-
- 25 May, 2004 1 commit
-
-
bar@bar.intranet.mysql.r18.ru authored
2. One now must pass length argument into append(const char *str, uint length), length is not calculated internally anymore.
-
- 22 May, 2004 1 commit
-
-
dlenev@brandersnatch.localdomain authored
names to lower case using latin1 instead of utf-8 in sql_acl.cc if lower_case_table_names was on. Also replaced in other such places system_charset_info with files_charset_info for consistency.
-
- 15 May, 2004 1 commit
-
-
monty@mysql.com authored
-
- 14 May, 2004 1 commit
-
-
heikki@hundin.mysql.fi authored
Fix remaining cases of Bug #3596: fix possible races caused by an obsolete value of thd->query_length in SHOW PROCESSLIST and SHOW INNODB STATUS; this fix depends on the fact that thd->query is always set to NULL before setting it to point to a new query
-
- 03 May, 2004 1 commit
-
-
ingo@mysql.com authored
Introduced a new free blocks list. Free blocks are now re-used before new blocks are allocated from the pool. There is a new status variable which can be queried by "show status like key_blocks_unused".
-
- 27 Apr, 2004 1 commit
-
-
monty@mishka.local authored
Changed 'SHOW FIELD STATUS' to use 'Engine' instead of 'Type'
-
- 09 Apr, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 06 Apr, 2004 2 commits
-
-
serg@serg.mylan authored
::reset(), HA_FAST_KEY_READ, disable_indexes(), enable_indexes(), start_bulk_insert(), end_bulk_insert() Field::val_str simplification, comment
-
monty@mysql.com authored
Don't add -debug to server version if MYSQL_SERVER_PREFIX is used Indentation cleanups
-
- 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
-
- 02 Apr, 2004 1 commit
-
-
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.
-
- 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.
-