An error occurred fetching the project authors.
- 15 Nov, 2002 2 commits
-
-
heikki@hundin.mysql.fi authored
Fix another bug introduced in 4.0.4 in AUTO_INCREMENT and deadlock or lock wait timeout
-
heikki@hundin.mysql.fi authored
Fix bug intoduced in 4.0.4 in REPLACE and AUTO_INCREMENT: if replace did an update, then auto-inc counter was left 1 too low
-
- 14 Nov, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
-
- 09 Nov, 2002 1 commit
-
-
heikki@hundin.mysql.fi authored
Try to skip over corrupt records in SELECT if innodb_force_recovery > 0; print more page hex dumps in CHECK TABLE
-
- 07 Nov, 2002 1 commit
-
-
monty@butch. authored
-
- 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
-
- 31 Oct, 2002 2 commits
-
-
heikki@hundin.mysql.fi authored
Add check that sizeof(trx_t) is the same in ha_inndob.cc and InnoDB compilation modules
-
heikki@hundin.mysql.fi authored
Fix bug: mysqld-debug-max failed standard test because a safe mutex size was seen as 24 bytes in the body of ha_innodb.cc, but 64 bytes in read0read.c
-
- 30 Oct, 2002 1 commit
-
-
heikki@hundin.mysql.fi authored
Fix bug in MySQL-3.23 ORDER BY from a table with no PRIMARY KEY and where the user had added UNIQUE indexes with CREATE INDEX
-
- 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
-
- 16 Oct, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
Ignore changed keyblocks when on does DELETE FROM table_name;
-
- 26 Sep, 2002 1 commit
-
-
heikki@hundin.mysql.fi authored
Fix an assertion in btr0pcur.c line 203 when an UPDATE is done inside LOCK TABLES
-
- 25 Sep, 2002 2 commits
-
-
heikki@hundin.mysql.fi authored
Remove the flag HA_NOT_READ_PREFIX_LAST because ORDER BY orders wrong then; also remove the diagnostic print to avoid cluttering the error log
-
heikki@hundin.mysql.fi authored
Move to the right place the flag which bans use of HA_READ_PREFIX_LAST; add diagnostics and remove the assertion on line 2180 of ha_innodb.cc
-
- 24 Sep, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
Only write short usage if one starts mysqldump without any options Added query cache on windows Added error message if one can't read privilege tables
-
- 21 Sep, 2002 3 commits
-
-
heikki@hundin.mysql.fi authored
Table hash key len in query cache also includes null char at end
-
heikki@hundin.mysql.fi authored
Add return statement
-
heikki@hundin.mysql.fi authored
Fix typos in last push Fix typo
-
- 20 Sep, 2002 2 commits
-
-
heikki@hundin.mysql.fi authored
Fix assertion when a temporary table is created and used inside LOCK TABLES
-
heikki@hundin.mysql.fi authored
Modifications for query cache + trxs, fix of q.c.+ foreign keys os0file.c: Use unbuffered i/o in Windows
-
- 14 Sep, 2002 2 commits
-
-
heikki@hundin.mysql.fi authored
Reverted the change which allowed use of HA_READ_PREFIX_LAST in InnoDB
-
heikki@hundin.mysql.fi authored
Add some comments ha_innodb.h: Remove the flag HA_NOT_READ_PREFIX_LAST from ha_innodb.h: InnoDB has supported this from the start, but not tested yet
-
- 11 Sep, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
Improve mysql-test to be more robust. Fix that GRANT doesn't delete SSL options Change innobase_flush_log_at_trx_commit to uint. Don't rotate logs if we read a rotate log entry from the master.
-
- 05 Sep, 2002 2 commits
-
-
monty@rescue. authored
-
heikki@rescue. authored
Fix a typo in last night's push
-
- 04 Sep, 2002 2 commits
-
-
heikki@work.mysql.com authored
ha_innodb.cc Remove gaps in auto-inc in multi-row inserts, more space for foreign key listings in SHOW TABLE STATUS, move resetting of active_trx to amore logical place dict0dict.h Remove gaps from auto-inc sequence if errors in multi-row insert dict0dict.c Remove gaps from auto-inc sequence if errors in multi-row insert
-
heikki@work.mysql.com authored
-
- 21 Aug, 2002 1 commit
-
-
serg@serg.mysql.com authored
-
- 12 Aug, 2002 3 commits
-
-
monty@hundin.mysql.fi authored
able delay_key_write as default (as it was in 4.0.2)
-
monty@hundin.mysql.fi authored
-
monty@hundin.mysql.fi authored
Fixed some windows portability problems and removed some compiler warnings Cleaned up QUOTE() function and fixed bug in \0 and \Z handling.
-
- 08 Aug, 2002 2 commits
-
-
monty@hundin.mysql.fi authored
Updated WEEK() and DATE information in the manual.
-
monty@mashka.mysql.fi authored
Lots of code fixes to the replication code (especially the binary logging and index log file handling) Fixed bugs in my last changeset that made MySQL hard to compile. Added mutex around some data that could cause table cache corruptions when using OPTIMIZE TABLE / REPAIR TABLE or automatic repair of MyISAM tables. Added mutex around some data in the slave start/stop code that could cause THD linked list corruptions Extended my_chsize() to allow one to specify a filler character. Extend vio_blocking to return the old state (This made some usage of this function much simpler) Added testing for some functions that they caller have got the required mutexes before calling the function. Use setrlimit() to ensure that we can write core file if one specifies --core-file. Added --slave-compressed-protocol Made 2 the minimum length for ft_min_word_len Added variables foreign_key_checks & unique_checks. Less logging from replication code (if not started with --log-warnings) Changed that SHOW INNODB STATUS requre the SUPER privilege More DBUG statements and a lot of new code comments
-
- 23 Jul, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
Made a some new buffers thread specific and changeable. Resize of key_buffer. AUTO_COMMIT -> AUTOCOMMIT Fixed mutex bug in DROP DATABASE Fixed bug when using auto_increment as second part of a key where first part could include NULL. Split handler->extra() to extra() and extra_opt() to be able to support thread specific buffers. Don't write message to error log when slave reconnects becasue of timeout. Fixed possible update problem when using DELETE/UPDATE on small tables (In some cases we used index even if table scanning would be better) A lot of minior code cleanups
-
- 18 Jun, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
This avoids using fulltext keys for table scanning. This also reverts Sinisa's original fix for this problem.
-
- 17 Jun, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
-
- 22 Apr, 2002 1 commit
-
-
heikki@hundin.mysql.fi authored
Reduce ibdata1 default size to 10M:autoextend
-
- 31 Mar, 2002 1 commit
-
-
monty@tik.mysql.fi authored
-
- 27 Mar, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
Fixed use of unitialized key
-
- 26 Mar, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
-