diff options
Diffstat (limited to 'sql/ha_heap.h')
-rw-r--r-- | sql/ha_heap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_heap.h b/sql/ha_heap.h index 24097460a24..4a01b3317f1 100644 --- a/sql/ha_heap.h +++ b/sql/ha_heap.h @@ -40,8 +40,8 @@ public: } const char *index_type(uint inx) { - return ((table->key_info[inx].algorithm == HA_KEY_ALG_BTREE) ? "BTREE" : - "HASH"); + return ((table->key_info[inx].algorithm == HA_KEY_ALG_BTREE) ? + "BTREE" : "HASH"); } /* Rows also use a fixed-size format */ enum row_type get_row_type() const { return ROW_TYPE_FIXED; } |