An error occurred fetching the project authors.
- 21 Oct, 2004 1 commit
-
-
heikki@hundin.mysql.fi authored
Fix bug #5961: release the dictionary latch during a long cascaded FOREIGN KEY operation, so that we do not starve other users
-
- 15 Oct, 2004 1 commit
-
-
jan@hundin.mysql.fi authored
was the query REPLACE or LOAD DATA INFILE REPLACE.
-
- 14 Oct, 2004 1 commit
-
-
jan@hundin.mysql.fi authored
X-locks on duplicates also on LOAD DATA...REPLACE clause and fixes a bug #6086 adding --disable_warnings and --enable_warnings around the create table clauses in ctype_utf8 tests for InnoDB.
-
- 01 Oct, 2004 2 commits
-
-
heikki@hundin.mysql.fi authored
Fix bug introduced by the prefix key + multibyte charsets patch today
-
marko@hundin.mysql.fi authored
-
- 03 Sep, 2004 2 commits
-
-
jan@hundin.mysql.fi authored
-
jan@hundin.mysql.fi authored
InnoDB. This fixes also a second part of the same problem with prefix keys on a multibyte string column for InnoDB.
-
- 17 Aug, 2004 1 commit
-
-
jan@hundin.mysql.fi authored
gap type lock.
-
- 12 Aug, 2004 1 commit
-
-
jan@hundin.mysql.fi authored
a REPLACE command.
-
- 11 Aug, 2004 1 commit
-
-
jan@hundin.mysql.fi authored
-
- 15 Jul, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
(Bug #4446)
-
- 17 Jun, 2004 1 commit
-
-
heikki@hundin.mysql.fi authored
-
- 16 Jun, 2004 1 commit
-
-
heikki@hundin.mysql.fi authored
Return the code of row_ins_foreign_check_on_constraint() as close to 4.0 as possible, except that we use mem_strdup() to allocate the memory for the modified table name
-
- 15 Jun, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
introduced in ChangeSet@1.1843.1.25 InnoDB: fix bug in the error exit of fil_create_new_single_table_tablespace(), introduced in ChangeSet@1.1843.1.11
-
- 27 May, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
Disable log archiving code unless #ifdef UNIV_LOG_ARCHIVE Remove (char*) casts of string constants; add const qualifiers Remove some Hot Backup code unless #ifdef UNIV_HOTBACKUP
-
- 11 May, 2004 1 commit
-
-
- 06 Apr, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
instead of stdout or fixed-size memory buffers
-
- 01 Apr, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
-
- 13 Mar, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
-
- 12 Mar, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
-
- 11 Mar, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
-
- 20 Feb, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
Removed unused code .del-os0trash.c~8cae5c1695501117: Delete: innobase/os/os0trash.c dict0crea.c: Protect all sprintf(%s) with assertions
-
- 14 Jan, 2004 1 commit
-
-
heikki@hundin.mysql.fi authored
Fix bug: FOREIGN KEY ... ON UPDATE/DELETE NO ACTION must check the foreign key constraint, not ignore it. Peter Gulutzan said that NO ACTION should check the constraint as deferred, at the end of the SQL statement, while RESTRICT should check it immediately. Since we do not have defered constraints in InnoDB, this bug fix makes InnoDB to check NO ACTION constraints immediately, like it checks RESTRICT constraints.
-
- 12 Dec, 2003 1 commit
-
-
heikki@hundin.mysql.fi authored
Fix assertion failure on line 713 of row0upd.c if there is a column prefix index and the last characters in the prefix are spaces: do not assume that the length of alphabetically equal strings is the same; fix a buglet which could cause InnoDB to think that a secondary index record was not locked though it had been updated in a way which did not alpahabetically change its value, e.g., abc -> aBc
-
- 07 Oct, 2003 1 commit
-
-
heikki@hundin.mysql.fi authored
Multiple tablespaces for InnoDB sql_table.cc: Tell explicitly that InnoDB should retrieve all columns in CHECKSUM TABLE sql_update.cc, sql_select.cc, my_base.h: More descriptive flag name HA_EXTRA_RETRIEVE_ALL_COLS
-
- 18 Jun, 2003 1 commit
-
-
heikki@hundin.mysql.fi authored
Fix error in previous push
-
- 17 Jun, 2003 1 commit
-
-
heikki@hundin.mysql.fi authored
Fix bug: InnoDB could print that it cannot find a clustered index record if an update undo, purge, and a consistent read coincided, in rare cases it might also have returned a wrong row in a query
-
- 14 Jun, 2003 1 commit
-
-
heikki@hundin.mysql.fi authored
Merge InnoDB-4.0.14: SAVEPOINT now implemented; InnoDB now accepts also column prefix keys; crashing bug in ON UPDATE CASCADE fixed; page checksum formula fixed
-
- 21 May, 2003 1 commit
-
-
heikki@hundin.mysql.fi authored
Disable UNIQU KEY error reporting in SHOW INNODB STATUS until we know if it slows down REPLACE significantly
-
- 04 May, 2003 1 commit
-
-
heikki@hundin.mysql.fi authored
Let SHOW INNODB STATUS print detailed info of the latest unique key violation, note that REPLACE and INSERT IGNORE mask the error from the user
-
- 16 Apr, 2003 3 commits
-
-
heikki@hundin.mysql.fi authored
Better fix for the ON DELETE SET NULL problem
-
heikki@hundin.mysql.fi authored
Fix bug: we did not allow ON DELETE SET NULL to modify the same table where the delete was made; we can allow it because that cannot produce infinite loops cascaded operations
-
heikki@hundin.mysql.fi authored
Merge InnoDB-4.0.13; DROP FOREIGN KEY now works
-
- 21 Dec, 2002 1 commit
-
-
heikki@hundin.mysql.fi authored
Merge InnoDB-4.0.7. Support for ON UPDATE CASCADE sql_select.cc: Remove superfluous prints to .err log when a locking SELECT fails to a deadlock or a lock wait timeout
-
- 05 Nov, 2002 1 commit
-
-
heikki@hundin.mysql.fi authored
Merge InnoDB-4.0.5b: minor improvements to foreign keys, more logical data dictionary lock
-
- 29 Oct, 2002 1 commit
-
-
heikki@hundin.mysql.fi authored
Merge InnoDB-4.0.5: new isolation levels READ COMMITTED and READ UNCOMMITTED now supported, selective deadlock resolution mysqld.cc: Change MySQL default isolation level to REPEATABLE READ; note that InnoDB has always had that default, and BDB and MyISAM always run at SERIALIZABLE level anyway
-
- 21 Sep, 2002 1 commit
-
-
heikki@hundin.mysql.fi authored
Table hash key len in query cache also includes null char at end
-
- 20 Sep, 2002 1 commit
-
-
heikki@hundin.mysql.fi authored
Modifications for query cache + trxs, fix of q.c.+ foreign keys os0file.c: Use unbuffered i/o in Windows
-
- 21 Jul, 2002 2 commits
-
-
heikki@hundin.mysql.fi authored
Move the assertion in foreign keys to the right place
-
heikki@hundin.mysql.fi authored
Do not perform ON DELETE action for a FOREIGN KEY constraint if we are doing an UPDATE, not a DELETE dict0dict.c: test
-