diff options
author | unknown <marko@hundin.mysql.fi> | 2004-12-08 14:33:09 +0200 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2004-12-08 14:33:09 +0200 |
commit | ff2c115ba8f048a117f9b3d03bd16b5883087826 (patch) | |
tree | 0d1c003aea6202503deae16528af6dba7a5f95be /innobase/row | |
parent | 22b16624d5170bd6cc985be7476dc58e5e721b07 (diff) | |
download | mariadb-git-ff2c115ba8f048a117f9b3d03bd16b5883087826.tar.gz |
row0mysql.c:
Remove parameter from call to btr_search_validate().
buf0buf.c:
Initialize member "index" of buf_block_t.
buf0buf.h:
Add member "index" to buf_block_t.
btr0sea.h:
Remove parameter of btr_search_validate()
btr0sea.c:
Make use of the added member "index" of buf_block_t.
innobase/btr/btr0sea.c:
Make use of the added member "index" of buf_block_t.
innobase/include/btr0sea.h:
Remove parameter of btr_search_validate()
innobase/include/buf0buf.h:
Add member "index" to buf_block_t.
innobase/buf/buf0buf.c:
Initialize member "index" of buf_block_t.
innobase/row/row0mysql.c:
Remove parameter from call to btr_search_validate().
Diffstat (limited to 'innobase/row')
-rw-r--r-- | innobase/row/row0mysql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/row/row0mysql.c b/innobase/row/row0mysql.c index be243b44488..fa584df15db 100644 --- a/innobase/row/row0mysql.c +++ b/innobase/row/row0mysql.c @@ -3398,7 +3398,7 @@ row_check_table_for_mysql( /* We validate also the whole adaptive hash index for all tables at every CHECK TABLE */ - if (!btr_search_validate(index)) { + if (!btr_search_validate()) { ret = DB_ERROR; } |