mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Local merge
This commit is contained in:
14
sql/mysqld.h
14
sql/mysqld.h
@ -402,16 +402,16 @@ enum options_mysqld
|
||||
|
||||
|
||||
/**
|
||||
Query type constants.
|
||||
|
||||
QT_ORDINARY -- ordinary SQL query.
|
||||
QT_IS -- SQL query to be shown in INFORMATION_SCHEMA (in utf8 and without
|
||||
character set introducers).
|
||||
Query type constants (usable as bitmap flags).
|
||||
*/
|
||||
enum enum_query_type
|
||||
{
|
||||
QT_ORDINARY,
|
||||
QT_IS
|
||||
/// Nothing specific, ordinary SQL query.
|
||||
QT_ORDINARY= 0,
|
||||
/// In utf8.
|
||||
QT_TO_SYSTEM_CHARSET= (1 << 0),
|
||||
/// Without character set introducers.
|
||||
QT_WITHOUT_INTRODUCERS= (1 << 1)
|
||||
};
|
||||
|
||||
/* query_id */
|
||||
|
Reference in New Issue
Block a user