Marko Mäkelä
6ab2281622
Remove a stray expression. Spotted by Sunny Bains.
2010-05-11 13:45:00 +03:00
Vasil Dimov
39220e0bc2
Merge mysql-5.1-innodb from bk-internal into my local branch
2010-05-10 16:28:52 +03:00
Vasil Dimov
90188d9cc7
Make dict_index_stat_mutex[] static because it is only used in dict0dict.c
2010-05-10 16:24:33 +03:00
Marko Makela
1a84dcdf24
Add an innodb_plugin test case for Bug #49164 .
2010-05-10 13:38:25 +02:00
Marko Makela
b092cd2f15
Add an innodb test case for Bug #49164 .
2010-05-10 13:37:52 +02:00
Marko Mäkelä
2582a3e97b
Re-enable ps_3innodb.
2010-05-05 15:05:55 +03:00
Marko Mäkelä
2b8dfe4186
Document Bug #53256
2010-05-05 14:50:11 +03:00
Marko Mäkelä
847968cff1
Note the 1.0.7 release
2010-05-05 14:45:13 +03:00
Marko Mäkelä
5ac91c3b51
row_merge_drop_temp_indexes(): Load the table via the dictionary cache.
...
Allow multiple indexes to be dropped. (Bug #53256 )
2010-05-05 14:24:11 +03:00
Marko Mäkelä
2cabdebc4f
Factor out innodb_multi_update.test from innodb.test
2010-05-05 13:44:25 +03:00
Marko Mäkelä
f9a7a32414
Factor out innodb_multi_update.test from innodb.test
2010-05-05 13:40:01 +03:00
Marko Mäkelä
2a50a6ddbd
Merge
2010-05-05 13:37:33 +03:00
Marko Mäkelä
33414c283d
Add Valgrind diagnostics to track down Bug #38999 .
2010-05-05 13:05:07 +03:00
Jimmy Yang
8a2bea6efd
Update ChangeLog for bug fix of #53165
2010-05-05 03:02:19 -07:00
Marko Mäkelä
00ffb08d6b
Add Valgrind diagnostics to track down Bug #38999 .
2010-05-05 12:53:28 +03:00
Jimmy Yang
cacc9bbb38
Port fix for 53165 to InnoDB 5.1 plugin. The change buffering options
...
are different in 5.1 comparing to that of 5.5, so a hand port is
necessary to avoid wrong default option to be set by a simple
branch merge.
2010-05-04 21:52:24 -07:00
Marko Mäkelä
9b541d5630
Document Bug #53306 in the InnoDB Plugin ChangeLog.
2010-05-04 16:15:17 +03:00
Marko Mäkelä
dc29792ff2
fsp_init_file_page_low(): Zero out the page. (Bug #53306 )
2010-05-04 16:13:58 +03:00
Marko Mäkelä
264cfbb0c5
fsp_init_file_page_low(): Zero out the page. (Bug #53306 )
2010-05-04 16:09:17 +03:00
Marko Mäkelä
5f0ff946c9
Add Valgrind checks to catch uninitialized writes to data files.
...
buf_flush_insert_into_flush_list(),
buf_flush_insert_sorted_into_flush_list(),
buf_flush_post_to_doublewrite_buf(): Check that the page is initialized.
2010-05-04 15:55:10 +03:00
Marko Mäkelä
9c9c9ebce7
Add Valgrind checks to catch uninitialized writes to data files.
...
buf_flush_insert_into_flush_list(),
buf_flush_insert_sorted_into_flush_list(),
buf_flush_post_to_doublewrite_buf(): Check that the page is initialized.
2010-05-04 15:47:44 +03:00
Marko Mäkelä
0819e09693
Remove UNIV_BTR_AVOID_COPY. It was broken because btr_attach_half_pages()
...
would get the block, new_block in the wrong order.
Fixing that would have complicated the function even further
for this marginal case.
2010-05-04 13:55:46 +03:00
Marko Mäkelä
a89d9d0202
btr_page_split_and_insert(): Correct the fix of Bug #52964 .
...
When split_rec==NULL, choose the correct node pointer key (first_rec).
2010-05-04 12:31:28 +03:00
Marko Mäkelä
9f0c6ffa12
buf_zip_decompress(): Allow BUF_NO_CHECKSUM_MAGIC as the stamped checksum.
...
buf_page_get_gen(): Assert that buf_zip_decompress() succeeds.
Callers are not prepared for a NULL return value. (Bug #53248 )
2010-05-03 15:28:59 +03:00
Vasil Dimov
8e6e163473
Disable innodb.innodb, main.ps_3innodb and main.partition_innodb_plugin
...
mysql-tests because those emit (spurious?) valgrind warnings.
2010-04-30 13:02:36 +03:00
Marko Makela
f9cf2eb7ec
recv_sys_init(), recv_sys_empty_hash(): Shrink recv_sys->addr_hash.
...
This addresses Bug #53122 in the built-in InnoDB.
2010-04-29 15:41:47 +02:00
Marko Makela
068e9a1922
recv_sys_init(), recv_sys_empty_hash(): Shrink recv_sys->addr_hash.
...
recv_addr_t: Turn space,page_no into bitfields to save space on 64-bit.
This addresses Bug #53122 in the InnoDB Plugin.
2010-04-29 15:37:50 +02:00
Marko Makela
1683309d64
Reduce the next-key locking of READ UNCOMMITTED to match that of
...
READ COMMITTED in the built-in InnoDB. (Bug #48607 )
2010-04-29 15:29:45 +02:00
Marko Makela
bd17880184
Reduce the next-key locking of READ UNCOMMITTED to match that of
...
READ COMMITTED in the InnoDB Plugin. (Bug #48607 )
2010-04-29 15:27:43 +02:00
Vasil Dimov
792ea1f65c
Bug#53046 dict_update_statistics_low can still be run concurrently
...
on same table
Followup to vasil.dimov@oracle.com-20100428102033-dt3caf531rs3lidr :
Add more asserions, which I forgot.
2010-04-28 13:34:52 +03:00
Vasil Dimov
7cf27d3806
Revert the fix of Bug#38996 Race condition in ANALYZE TABLE
...
This is branches/zip@r6032 in SVN and _is part_ of
revid:svn-v4:16c675df-0fcb-4bc9-8058-dcc011a37293:branches/zip:6113
in BZR.
This is being reverted because now the code is serialized directly on
index->stat_n_diff_key_vals[] as the fix for
Bug#53046 dict_update_statistics_low can still be run concurrently on same table
goes.
2010-04-28 13:32:00 +03:00
Vasil Dimov
1a4896325d
Followup to vasil.dimov@oracle.com-20100428084627-wtrmc66wqvjsdgj7:
...
Address Marko's suggestions wrt the fix of
Bug#53046 dict_update_statistics_low can still be run concurrently
on same table
2010-04-28 13:20:33 +03:00
Vasil Dimov
90fa66abfd
Fix Bug#53046 dict_update_statistics_low can still be run concurrently
...
on same table
Protect dict_index_t::stat_n_diff_key_vals[] with an array of
mutexes.
Testing: tested all code paths under UNIV_SYNC_DEBUG
for the one in dict_print() one has to enable the InnoDB table monitor:
CREATE TABLE innodb_table_monitor (a int) ENGINE=INNODB;
2010-04-28 11:46:27 +03:00
Marko Makela
831f2c9c4a
Merge r6103 from InnoDB Plugin to the built-in InnoDB to fix Bug #53202 :
...
------------------------------------------------------------------------
r6103 | marko | 2009-10-26 15:46:18 +0200 (Mon, 26 Oct 2009) | 4 lines
Changed paths:
M /branches/zip/row/row0ins.c
branches/zip: row_ins_alloc_sys_fields(): Zero out the system columns
DB_TRX_ID, DB_ROLL_PTR and DB_ROW_ID, in order to avoid harmless
Valgrind warnings about uninitialized data. (The warnings were
harmless, because the fields would be initialized at a later stage.)
------------------------------------------------------------------------
2010-04-28 08:33:25 +02:00
Vasil Dimov
b820f404a0
Merge mysql-5.1 -> mysql-5.1-innodb, this merge does not change
...
any files.
2010-04-27 17:45:30 +03:00
Vasil Dimov
9bd4145974
Do not define UNIV_DEBUG_VALGRIND when HAVE_purify because
...
this results in some valgrind errors.
Bug#53202 valgrind: uninitialized bytes in dtuple_print()
has been opened to track this.
2010-04-27 17:05:41 +03:00
Marko Mäkelä
0c4bd74c97
Merge
2010-04-27 16:51:54 +03:00
Marko Mäkelä
67b09e5d29
row_merge_drop_temp_indexes(): Remove a bogus char-to-ulint cast.
2010-04-27 16:47:38 +03:00
Vasil Dimov
e3dc155d60
Merge 3417..3421 from mysql-5.1-innodb
2010-04-27 09:16:45 +03:00
Vasil Dimov
2a97503d06
Split the innodb.innodb mysql-test.
...
Extract part of innodb.innodb into innodb.innodb_misc1
This is needed in order to be able to more easily debug this test,
under valgrind, it is too huge.
2010-04-27 09:09:08 +03:00
Marko Mäkelä
9ed0c744ae
lock_rec_queue_validate(): Disable a bogus check that
...
a transaction that holds a lock on a clustered index record
also holds a lock on the secondary index record.
2010-04-26 16:10:29 +03:00
Marko Mäkelä
0c0a3b9a2d
recv_sys_init(): Skip the red-black tree in Hot Backup.
2010-04-26 14:26:09 +03:00
Marko Mäkelä
9ec44b56e4
Add a test case for Bug #52745 .
2010-04-26 14:08:56 +03:00
Marko Mäkelä
f499c1102f
Merge Vasil Dimov 2010-04-26 Bump InnoDB Plugin version number after 1.0.7
2010-04-26 13:52:15 +03:00
Marko Mäkelä
30b15fae14
row_search_for_mysql(): Never try semi-consistent read in unique searches.
...
They are only useful in table scans. (Bug #52663 )
2010-04-26 13:27:25 +03:00
Vasil Dimov
5d345a9a9a
Bump InnoDB Plugin version number after 1.0.7 has been released
...
in MySQL 5.1.46.
2010-04-26 11:35:57 +03:00
Marko Mäkelä
5571d4aef9
btr_page_split_and_insert(): Silence a compiler warning
...
about possibly uninitialized variable insert_left.
2010-04-26 10:39:49 +03:00
Calvin Sun
5bad43c1ff
mysql-5.1-innodb: add error codes to innodb_bug51920.test
...
kill of active connection yields different error code
depending on platform.
2010-04-22 14:16:14 -05:00
Marko Mäkelä
4b2b0559ee
Correct the definition of DICT_SYS_INDEXES_NAME_FIELD.
...
When row_merge_drop_temp_indexes() was reworked to drop the indexes
via the data dictionary cache, the code was broken because it would
read the index name from the wrong field.
2010-04-22 12:33:42 +03:00
Marko Mäkelä
d9d61e929e
btr_page_split_and_insert(): Avoid an infinite loop. (Bug #52964 )
...
btr_page_tuple_smaller(): New function, refactored from
btr_page_split_and_insert().
btr_page_get_split_rec(): Renamed from btr_page_get_sure_split_rec().
Note that a NULL return may mean that the tuple is to be inserted into
either the lower or upper page, to be determined by btr_page_tuple_smaller().
btr_page_split_and_insert(): When btr_page_get_split_rec() returns NULL,
invoke btr_page_tuple_smaller() to determine which half-page the tuple
belongs to.
Reviewed by Sunny Bains
2010-04-21 21:53:59 +03:00