An error occurred fetching the project authors.
- 25 Aug, 2005 1 commit
-
-
monty@mishka.local authored
-
- 12 Aug, 2005 1 commit
-
-
serg@sergbook.mysql.com authored
Now we keep all active XID's in a hash
-
- 08 Aug, 2005 1 commit
-
-
serg@serg.mylan authored
-
- 30 Jul, 2005 1 commit
-
-
sergefp@mysql.com authored
its body, but lets each statement to get/release its own locks. This allows a broader set of statements to be executed inside PROCEDUREs (but breaks replication) This patch should fix BUG#8072, BUG#8766, BUG#9563, BUG#11126
-
- 20 Jul, 2005 1 commit
-
-
tomas@poseidon.ndb.mysql.com authored
- do not discover temporary files and make them visible
-
- 19 Jul, 2005 2 commits
-
-
konstantin@mysql.com authored
The idea of the patch is that every cursor gets its own lock id for table level locking. Thus cursors are protected from updates performed within the same connection. Additionally a list of transient (must be closed at commit) cursors is maintained and all transient cursors are closed when necessary. Lastly, this patch adds support for deadlock timeouts to TLL locking when using cursors. + post-review fixes.
-
dlenev@mysql.com authored
"Triggers have the wrong namespace" "Triggers: duplicate names allowed" "Triggers: CREATE TRIGGER does not accept fully qualified names" "SHOW TRIGGERS"
-
- 04 Jul, 2005 1 commit
-
-
monty@mysql.com authored
- Mostly indentation fixes - Added missing test - Ensure that Item_func_case() checks for stack overruns - Use real_item() instead of (Item_ref*) item - Fixed wrong error handling
-
- 27 Jun, 2005 1 commit
-
-
monty@mishka.local authored
Fixes while reviewing new pushed code NULL as argument to encrypt/decrypt should return NULL without a warning
-
- 17 Jun, 2005 1 commit
-
-
acurtis@xiphis.org authored
Implement new SQL mode - NO_ENGINE_SUBSTITUTION
-
- 16 Jun, 2005 1 commit
-
-
msvensson@neptunus.(none) authored
- Updated after review
-
- 08 Jun, 2005 1 commit
-
-
msvensson@neptunus.(none) authored
- Added better error messages when trying to open a table that can't be discovered or unpacked. The most likely cause of this is that it does not have any frm data, probably since it has been created from NdbApi or is a NDB system table. - Separated functionality that was in ha_create_table_from_engine into two functions. One that checks if the table exists and another one that tries to create the table from the engine.
-
- 07 Jun, 2005 1 commit
-
-
dlenev@brandersnatch.localdomain authored
We should not allow explicit or implicit transaction commits inside of stored functions or triggers (so in autocommit mode we should not do commits after execution of sub-statement). Also since we don't support nested statement transactions in 5.0, we shouldn't commit or rollback stmt transactions while we are inside stored functions or triggers. This should be fixed in later (>=5.1) releases.
-
- 05 Jun, 2005 1 commit
-
-
serg@serg.mylan authored
'#pragma interface' (that comes with the #include'd header file)
-
- 03 Jun, 2005 1 commit
-
-
monty@mysql.com authored
Ensure that 'null_value' is not accessed before val() is called in FIELD() functions Fixed initialization of key maps. This fixes some problems with keys when you have more than 64 keys Fixed that ROLLUP don't always create a temporary table. This fix ensures that func_gconcat.test results are now predictable
-
- 02 Jun, 2005 1 commit
-
-
kent@mysql.com authored
Set #pragma implementation" earlier Many files: Need to include <my_global.h> before #ifdef USE_PRAGMA_IMPLEMENTATION
-
- 26 May, 2005 1 commit
-
-
msvensson@neptunus.(none) authored
Added some more ifdefs for "#pragma interface"
-
- 18 May, 2005 1 commit
-
-
monty@mysql.com authored
This makes it easier to give an error in the handler if there was a problem generating an auto-increment value
-
- 16 May, 2005 1 commit
-
-
monty@mysql.com authored
-
- 06 May, 2005 1 commit
-
-
monty@mishka.local authored
Added option --count to mysqlshow (to show number of rows) Fixed possible core dump in information schema
-
- 28 Apr, 2005 1 commit
-
-
msvensson@neptunus.(none) authored
- Remove ha_archive::rename_table and move the fix to handler::rename_table
-
- 27 Apr, 2005 2 commits
-
-
monty@mysql.com authored
Fixed problem with NULL in VARCHAR/BLOB keys for multi-part keys where VARCHAR/BLOB is first part
-
heikki@hundin.mysql.fi authored
Fix compilation error if HAVE_REPLICATION is not defined
-
- 22 Apr, 2005 1 commit
-
-
gbichot@quadita2.mysql.com authored
BUG#9738 "SHOW VARIABLES still displays the deprecated 'log_update' in 5.0", BUG#9542 "MySQL dies with signal 11 when it is using non-existent location of binary logs"
-
- 20 Apr, 2005 1 commit
-
-
heikki@hundin.mysql.fi authored
Semi-synchronous replication for InnoDB type tables; before telling the client that a commit has been processed, wait that the replication thread has returned from my_net_send() where it sends the binlog to the slave; note that TCP/IP, even with the TCP_NODELAY option does not guarantee that the slave has RECEIVED the data - this is just heuristic at the moment; this is useful in failover: in almost all cases, every transaction that has returned from the commit has been sent and processed in the slave, which makes failover to the slave simpler if the master crashes; the code does not work yet as is, because MySQL should call innobase_report_binlog_offset_and_commit() in a commit; we will most probably return that call to 5.0.x, to make InnoDB Hot Backup and group commit to work again; XA code broke them temporarily in 5.0.3
-
- 16 Apr, 2005 1 commit
-
-
monty@mishka.local authored
Don't abort on bootstrap if a wrong --default-storage-engine is specified
-
- 14 Apr, 2005 1 commit
-
-
jimw@mysql.com authored
refuse to start up if it is not. (Bug #9815)
-
- 12 Apr, 2005 1 commit
-
-
serg@serg.mylan authored
-
- 07 Apr, 2005 1 commit
-
-
msvensson@neptunus.(none) authored
- Removed hardcoded error message from 4.1
-
- 05 Apr, 2005 3 commits
-
-
serg@serg.mylan authored
-
heikki@hundin.mysql.fi authored
Fix Bug #8650 : InnoDB does not rollback SQL statement at an error
-
serg@serg.mylan authored
fix a race condition in TC_LOG_BINLOG::unlog
-
- 03 Apr, 2005 1 commit
-
-
serg@serg.mylan authored
minor cleanups XA tests
-
- 30 Mar, 2005 1 commit
-
-
monty@mysql.com authored
Small fixes while doing review of new pushed code More test cases for decimal
-
- 27 Mar, 2005 1 commit
-
-
dlenev@brandersnatch.localdomain authored
#6559 "DROP DATABASE forgets to drop triggers". If we drop table we should also drop all triggers associated with it. To do this we have to check for existence of .TRG file when we are dropping table and delete it too.
-
- 23 Mar, 2005 1 commit
-
-
brian@zim.(none) authored
Additional storage engine called "blackhole". Customer request, and for that matter a Zawodny request. With this you can alter table to a type of table that would never store data. Its a /dev/null for a database.
-
- 21 Mar, 2005 2 commits
-
-
jimw@mysql.com authored
-
monty@mysql.com authored
Fixed newly introduced bug in rollup
-
- 19 Mar, 2005 1 commit
-
-
jimw@mysql.com authored
Windows to call CreateFileMapping() with correct arguments, and propogating the introduction of query_id_t to everywhere query ids are passed around. (Bug #8826)
-
- 16 Mar, 2005 1 commit
-
-
monty@mysql.com authored
Removed some optional arguments Fixed portability problem in federated tests
-