summaryrefslogtreecommitdiff
path: root/storage/maria/maria_pack.c
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2020-02-26 14:52:23 +0200
committerMonty <monty@mariadb.org>2020-03-24 21:00:04 +0200
commit37393bea23d10741cf99b59ddcaffd58e9652bb9 (patch)
tree4f3e0c06407386dfe101a0fb3a21dc0f037d6b60 /storage/maria/maria_pack.c
parent8eba777c2bbad7721c818936a3a0ced3b2fcd59c (diff)
downloadmariadb-git-37393bea23d10741cf99b59ddcaffd58e9652bb9.tar.gz
Replace handler::primary_key_is_clustered() with handler::pk_is_clustering_key()
This was done to both simplify the code and also to be easier to handle storage engines that are clustered on some other index than the primary key. As pk_is_clustering_key() and is_clustering_key now are using only index_flags, these where removed from all storage engines.
Diffstat (limited to 'storage/maria/maria_pack.c')
-rw-r--r--storage/maria/maria_pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/maria/maria_pack.c b/storage/maria/maria_pack.c
index e45844971e5..630859a1e25 100644
--- a/storage/maria/maria_pack.c
+++ b/storage/maria/maria_pack.c
@@ -239,7 +239,7 @@ int main(int argc, char **argv)
if (!opt_ignore_control_file &&
(no_control_file= ma_control_file_open(FALSE,
(opt_require_control_file ||
- !silent))) &&
+ !silent), FALSE)) &&
opt_require_control_file)
{
error= 1;