An error occurred fetching the project authors.
- 30 Sep, 2005 3 commits
-
-
serg@serg.mylan authored
"SELECT ... FOR UPDATE executed as consistent read inside LOCK TABLES" Do not discard lock_type information as handler::start_stmt() may require knowledge. (fixed by Antony)
-
marko@hundin.mysql.fi authored
-
marko@hundin.mysql.fi authored
-
- 29 Sep, 2005 2 commits
-
-
marko@hundin.mysql.fi authored
-
jan@hundin.mysql.fi authored
consistent read (Bug #12669). This fixes InnoDB part of the bug.
-
- 28 Sep, 2005 2 commits
-
-
osku@127.(none) authored
-
jan@hundin.mysql.fi authored
consistent read (Bug #12669).
-
- 23 Sep, 2005 3 commits
-
-
osku@127.(none) authored
-
osku@127.(none) authored
-
osku@127.(none) authored
-
- 20 Sep, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
WL#2787 (Add view definer/owner to the view definition (.frm) to check privileges on used tables and stored routines when using a VIEW.) Part 2 postreview fixes.
-
- 19 Sep, 2005 1 commit
-
-
brian@zim.(none) authored
Cleanup for handlerton structure to allow for loadable engine work. This is the first in a series of patches.
-
- 15 Sep, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 06 Sep, 2005 1 commit
-
-
osku@127.(none) authored
-
- 04 Sep, 2005 3 commits
-
-
heikki@hundin.mysql.fi authored
Fix bug #12308 : do not roll back the whhole transaction in a lock wait timeout error, just roll back the latest SQL statement; note that the locks set in the latest SQL statements remain, as InnoDB does not know what locks were set in which SQL statement
-
heikki@hundin.mysql.fi authored
Better comments about auto-inc and SHOW TABLE STATUS
-
heikki@hundin.mysql.fi authored
Fix bug #12973 : set the table handle field auto_increment_value if ::info() is called with the flag HA_STATUS_AUTO
-
- 31 Aug, 2005 2 commits
-
-
heikki@hundin.mysql.fi authored
Fix bug #12410 : InnoDB was too permissive with LOCK TABLE ... READ LOCAL, and alowed new inserts to the table; we now make READ LOCAL equivalent to READ for InnoDB; note that this will cause slightly more locking in mysqldump, but makes the InnoDB table dumps consistent with MyISAM table dumps; note that the real code change patch was accidentally pushed with my another patch 5 minutes ago
-
heikki@hundin.mysql.fi authored
Fix bug #12852 : do not increment the open handle count to a table if the table does not have an .ibd file and InnoDB decides to return an error from the ::open() function; then the table can be dropped even if the user has tried to open it
-
- 30 Aug, 2005 2 commits
-
-
paul@kite-hub.kitebird.com authored
Reorder out-of-order status variables
-
osku@127.(none) authored
-
- 25 Aug, 2005 1 commit
-
-
heikki@hundin.mysql.fi authored
Fix typo
-
- 24 Aug, 2005 1 commit
-
-
heikki@hundin.mysql.fi authored
Fix bug #12779 : never give a row count estimate of 0 to the MySQL query optimizer, as then left join optimizer may beleive it KNOWS that the table is empty; note that this fix may change query optimization of many other queries where one table is empty; note that the proper fix would be to make the query optimizer to know that the row count estimates it receives really are just estimates, it cannot assume they are certain
-
- 17 Aug, 2005 1 commit
-
-
osku@127.(none) authored
in InnoDB tables.
-
- 16 Aug, 2005 1 commit
-
-
jani@ua141d10.elisa.omakaista.fi authored
-
- 12 Aug, 2005 2 commits
-
-
serg@sergbook.mysql.com authored
Now we keep all active XID's in a hash
-
osku@127.(none) authored
most notably deadlocked ones in SHOW INNODB STATUS. Fixes bug #7819.
-
- 11 Aug, 2005 2 commits
-
-
jani@ua141d10.elisa.omakaista.fi authored
sql_print_warning() and sql_print_error() instead of fprintf to stderr. Above functions are tuned for different platforms so that the behavior is consistent around platforms. Using fprintf() different behavior can be expected at least on Windows and Unix.
-
vtkachenko@quadxeon.mysql.com authored
Added innodb_commit_concurrency variable
-
- 10 Aug, 2005 1 commit
-
-
konstantin@mysql.com authored
cursors (+ commit)" and Bug#11832 "Server crash with InnoDB + Cursors" See comments to the changed files.
-
- 09 Aug, 2005 2 commits
-
-
evgen@moonbone.local authored
When PRIMARY KEY is present ha_innobase::cmp_ref() uses it to compare refs. After comparing part of key it moves pointers to compare next part. For varchar parts pointers were moved only by length of parts, not including bytes containig part length itself. This results in wrong comparision and wrong number of deleted records.
-
monty@mysql.com authored
-
- 08 Aug, 2005 1 commit
-
-
heikki@hundin.mysql.fi authored
Add a forgotten newline to a print
-
- 03 Aug, 2005 4 commits
-
-
heikki@hundin.mysql.fi authored
Fix compilation error in the fix of Bug #12263
-
heikki@hundin.mysql.fi authored
Fix compilation error in previous commit
-
heikki@hundin.mysql.fi authored
Backport of Bug #9670 to 4.0: assertion failure in ut_a(cursor->old_stored == BTR_PCUR_OLD_STORED)
-
heikki@hundin.mysql.fi authored
Push the patch of Jan Lindstrom: better comments ha_innodb.cc: Partial fix for Bug #12263 : we let InnoDB always to perform a rollback on the trx object if MySQL closes a connection; but we do print a warning to the .err log if an InnoDB transaction was active; we may remove that print later, since the situation really is not a bug; MySQL just is not aware that some cursor operation started an InnoDB transaction
-
- 29 Jul, 2005 1 commit
-
-
sergefp@mysql.com authored
-
- 22 Jul, 2005 1 commit
-
-
jan@hundin.mysql.fi authored
cursors for InnoDB. The idea of the patch is that if MySQL requests a consistent read view, we open one when open a cursor, set is as the active view to a transaction when fetch from the cursor, and close together with cursor close. This patch is associated to bugs #11813, #11832, and #11833. Contains after review fixes.
-
- 20 Jul, 2005 1 commit
-
-
konstantin@mysql.com authored
cursors. This should fix Bug#11813 when InnoDB part is in (tested with a draft patch). The idea of the patch is that if a storage engine supports consistent read views, we open one when open a cursor, set is as the active view when fetch from the cursor, and close together with cursor close.
-