summaryrefslogtreecommitdiff
path: root/storage/myisam
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2022-03-11 14:52:16 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2022-03-11 14:52:16 +0200
commit3c9f415e529e4e3dc9948b8df0ede75f628a8805 (patch)
tree5f944eb9b90c2b39564fd1350de6bc0155968e16 /storage/myisam
parent79bc654ac34ee24e24afe98215ba7c44edd8e113 (diff)
parent77c7390fc8cdcf1373c1277ebb129a13575a3a5b (diff)
downloadmariadb-git-3c9f415e529e4e3dc9948b8df0ede75f628a8805.tar.gz
Merge 10.6 into 10.7
Diffstat (limited to 'storage/myisam')
-rw-r--r--storage/myisam/myisamdef.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/storage/myisam/myisamdef.h b/storage/myisam/myisamdef.h
index f48d1078000..c90d989c975 100644
--- a/storage/myisam/myisamdef.h
+++ b/storage/myisam/myisamdef.h
@@ -1,6 +1,6 @@
/*
Copyright (c) 2000, 2012, Oracle and/or its affiliates.
- Copyright (c) 2017, MariaDB Corporation.
+ Copyright (c) 2017, 2022, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -613,21 +613,21 @@ typedef struct st_mi_block_info /* Parameter to _mi_get_block_info */
} MI_BLOCK_INFO;
-typedef struct st_sort_key_blocks /* Used when sorting */
+struct st_sort_key_blocks /* Used when sorting */
{
uchar *buff, *end_pos;
uchar lastkey[HA_MAX_POSSIBLE_KEY_BUFF];
uint last_length;
int inited;
-} SORT_KEY_BLOCKS;
+};
-typedef struct st_sort_ftbuf
+struct st_sort_ftbuf
{
uchar *buf, *end;
int count;
uchar lastkey[HA_MAX_KEY_BUFF];
-} SORT_FT_BUF;
+};
/* bits in return from _mi_get_block_info */