diff options
author | Monty <monty@mariadb.org> | 2021-03-18 12:48:20 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2021-05-19 22:54:12 +0200 |
commit | 249263525f65d34dc1e2a19d6135043fd17aaac9 (patch) | |
tree | 901c7aad8204fd26739c7d690a8c18fd56cfccdf /sql/item_vers.h | |
parent | 4832e5491557d039bf19fc20e0a210d4489b618f (diff) | |
download | mariadb-git-249263525f65d34dc1e2a19d6135043fd17aaac9.tar.gz |
Avoid creating the .frm file twice in some cases
Other things:
- Updated code comments & fixed indentation
- Removed an old QQ (temporary) comment that does not apply anymore
Diffstat (limited to 'sql/item_vers.h')
-rw-r--r-- | sql/item_vers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_vers.h b/sql/item_vers.h index e816b3bf0e9..7cd5d847b15 100644 --- a/sql/item_vers.h +++ b/sql/item_vers.h @@ -46,7 +46,7 @@ public: LEX_CSTRING func_name_cstring() const override { static LEX_CSTRING name= {STRING_WITH_LEN("is_history") }; - return name; + return name; } void print(String *str, enum_query_type query_type) override; Item *get_copy(THD *thd) override |