diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2018-05-01 01:10:37 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2018-05-01 16:52:19 +0300 |
commit | 2b27ac8282ed81b1b0c65e748d66498b81b85cee (patch) | |
tree | 7c4b94e0507fe71392a045477fabdcfbcd80b802 /storage/innobase/include/row0sel.h | |
parent | 87b0434e0f6ddcf0801355eb08d39c4fd02dd4e9 (diff) | |
download | mariadb-git-2b27ac8282ed81b1b0c65e748d66498b81b85cee.tar.gz |
Fix many -Wunused-parameter
Remove unused InnoDB function parameters and functions.
i_s_sys_virtual_fill_table(): Do not allocate heap memory.
mtr_is_block_fix(): Replace with mtr_memo_contains().
mtr_is_page_fix(): Replace with mtr_memo_contains_page().
Diffstat (limited to 'storage/innobase/include/row0sel.h')
-rw-r--r-- | storage/innobase/include/row0sel.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/storage/innobase/include/row0sel.h b/storage/innobase/include/row0sel.h index d73c186b12e..366c24acec8 100644 --- a/storage/innobase/include/row0sel.h +++ b/storage/innobase/include/row0sel.h @@ -135,8 +135,7 @@ row_sel_convert_mysql_key_to_innobase( ulint buf_len, /*!< in: buffer length */ dict_index_t* index, /*!< in: index of the key value */ const byte* key_ptr, /*!< in: MySQL key value */ - ulint key_len, /*!< in: MySQL key value length */ - trx_t* trx); /*!< in: transaction */ + ulint key_len); /*!< in: MySQL key value length */ /** Searches for rows in the database. This is used in the interface to |