24#ifndef PARSE_TREE_COL_ATTRS_INCLUDED
25#define PARSE_TREE_COL_ATTRS_INCLUDED
44#include "mysqld_error.h"
102 bool *has_explicit_collation
103 [[maybe_unused]])
const {
151 *type_flags &= ~NOT_NULL_FLAG;
249 assert(check_const_list !=
nullptr);
305 bool *has_explicit_collation)
const override {
306 if (*has_explicit_collation) {
310 *has_explicit_collation =
true;
337 my_error(ER_WRONG_USAGE,
MYF(0),
"DEFAULT",
"generated column");
365 my_error(ER_WRONG_USAGE,
MYF(0),
"ON UPDATE",
"generated column");
371 return item ==
nullptr;
392 my_error(ER_WRONG_USAGE,
MYF(0),
"AUTO_INCREMENT",
"generated column");
418 my_error(ER_WRONG_USAGE,
MYF(0),
"SERIAL DEFAULT VALUE",
447 my_error(ER_WRONG_USAGE,
MYF(0),
"COLUMN_FORMAT",
"generated column");
474 my_error(ER_WRONG_USAGE,
MYF(0),
"STORAGE",
"generated column");
516 my_error(ER_WRONG_USAGE,
MYF(0),
"DEFAULT",
"generated column");
541 *type_flags &= ~FIELD_IS_INVISIBLE;
567 virtual const char *
get_dec()
const {
return nullptr; }
602 ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT,
603 ER_THD(thd, ER_WARN_DEPRECATED_FLOAT_DIGITS));
607 ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT,
608 ER_THD(thd, ER_WARN_DEPRECATED_FLOAT_UNSIGNED));
621 ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT,
622 ER_THD(thd, ER_WARN_DEPRECATED_INTEGER_DISPLAY_WIDTH));
699 const char *length_arg =
length ==
nullptr ?
"2048" :
length;
700 uint vector_length = atoi(length_arg) *
sizeof(float);
817 if (!pc->
thd->
variables.explicit_defaults_for_timestamp)
853template <Enum_type enum_type>
926 const char *
dec =
nullptr;
970 if (attrs !=
nullptr) {
971 for (
auto attr : *attrs) {
972 if (attr->contextualize(pc))
return true;
979 attr->apply_srid_modifier(&
m_srid);
1030 :
super(pos, type_node_arg),
1043 my_error(ER_WRONG_USAGE,
MYF(0),
"SERIAL",
"generated column");
Kerberos Client Authentication nullptr
Definition: auth_kerberos_client_plugin.cc:251
ulonglong flags
Definition: sql_alter.h:429
@ ADD_CHECK_CONSTRAINT
Set for add check constraint.
Definition: sql_alter.h:319
@ ALTER_ADD_INDEX
Set for ADD INDEX | ADD KEY | ADD PRIMARY KEY | ADD UNIQUE KEY | ADD UNIQUE INDEX | ALTER ADD [COLUMN...
Definition: sql_alter.h:229
geometry_type
Definition: field.h:720
Definition: item_timefunc.h:1187
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:930
@ NULL_ITEM
A NULL value.
Definition: item.h:975
virtual bool itemize(Parse_context *pc, Item **res) final
The same as contextualize() but with additional parameter.
Definition: item.h:1249
virtual enum Type type() const =0
Definition: sql_list.h:494
bool push_back(const Element_type &element)
Adds a new element at the end of the array, after its current last element.
Definition: mem_root_array.h:186
Node for the AUTO_INCREMENT column attribute.
Definition: parse_tree_column_attrs.h:380
PT_column_attr_base super
Definition: parse_tree_column_attrs.h:381
void apply_type_flags(ulong *type_flags) const override
Definition: parse_tree_column_attrs.h:387
PT_auto_increment_column_attr(const POS &pos)
Definition: parse_tree_column_attrs.h:384
bool do_contextualize(Column_parse_context *pc) override
Do all context-sensitive things and mark the node as contextualized.
Definition: parse_tree_column_attrs.h:390
Node for the BIT type.
Definition: parse_tree_column_attrs.h:638
PT_bit_type(const POS &pos)
Definition: parse_tree_column_attrs.h:642
const char * get_length() const override
Definition: parse_tree_column_attrs.h:647
const char * length
Definition: parse_tree_column_attrs.h:639
PT_bit_type(const POS &pos, const char *length)
Definition: parse_tree_column_attrs.h:644
Node for BLOB types.
Definition: parse_tree_column_attrs.h:722
const CHARSET_INFO * charset
Definition: parse_tree_column_attrs.h:724
PT_blob_type(const POS &pos, Blob_type blob_type, const CHARSET_INFO *charset, bool force_binary=false)
Definition: parse_tree_column_attrs.h:730
const char * length
Definition: parse_tree_column_attrs.h:723
PT_blob_type(const POS &pos, const char *length)
Definition: parse_tree_column_attrs.h:738
const char * get_length() const override
Definition: parse_tree_column_attrs.h:748
const CHARSET_INFO * get_charset() const override
Definition: parse_tree_column_attrs.h:747
ulong get_type_flags() const override
Definition: parse_tree_column_attrs.h:744
std::remove_const< decltype(PT_type::type)>::type Parent_type
Definition: parse_tree_column_attrs.h:727
const bool force_binary
Definition: parse_tree_column_attrs.h:725
Node for the BOOL/BOOLEAN type.
Definition: parse_tree_column_attrs.h:655
const char * get_length() const override
Definition: parse_tree_column_attrs.h:658
PT_boolean_type(const POS &pos)
Definition: parse_tree_column_attrs.h:657
Definition: parse_tree_column_attrs.h:667
std::remove_const< decltype(PT_type::type)>::type Parent_type
Definition: parse_tree_column_attrs.h:672
PT_char_type(const POS &pos, Char_type char_type, const char *length, const CHARSET_INFO *charset, bool force_binary=false)
Definition: parse_tree_column_attrs.h:675
const char * length
Definition: parse_tree_column_attrs.h:668
const char * get_length() const override
Definition: parse_tree_column_attrs.h:689
PT_char_type(const POS &pos, Char_type char_type, const CHARSET_INFO *charset, bool force_binary=false)
Definition: parse_tree_column_attrs.h:683
ulong get_type_flags() const override
Definition: parse_tree_column_attrs.h:686
const CHARSET_INFO * get_charset() const override
Definition: parse_tree_column_attrs.h:690
const CHARSET_INFO * charset
Definition: parse_tree_column_attrs.h:669
const bool force_binary
Definition: parse_tree_column_attrs.h:670
Node for the [CONSTRAINT [symbol]] CHECK '(' expr ')' column attribute.
Definition: parse_tree_column_attrs.h:226
void apply_alter_info_flags(ulonglong *flags) const override
Definition: parse_tree_column_attrs.h:243
PT_column_attr_base super
Definition: parse_tree_column_attrs.h:227
bool add_check_constraints(Sql_check_constraint_spec_list *check_const_list) override
Definition: parse_tree_column_attrs.h:247
bool set_constraint_enforcement(bool enforced) override
Update the ENFORCED/NOT ENFORCED state of the CHECK constraint.
Definition: parse_tree_column_attrs.h:238
PT_check_constraint_column_attr(const POS &pos, LEX_STRING &name, Item *expr)
Definition: parse_tree_column_attrs.h:231
Sql_check_constraint_spec col_cc_spec
Definition: parse_tree_column_attrs.h:228
bool do_contextualize(Column_parse_context *pc) override
Do all context-sensitive things and mark the node as contextualized.
Definition: parse_tree_column_attrs.h:253
Node for the COLLATE <collation> column attribute.
Definition: parse_tree_column_attrs.h:297
bool apply_collation(Column_parse_context *pc, const CHARSET_INFO **to, bool *has_explicit_collation) const override
Definition: parse_tree_column_attrs.h:304
PT_collate_column_attr(const POS &pos, const CHARSET_INFO *collation)
Definition: parse_tree_column_attrs.h:299
const CHARSET_INFO *const m_collation
Definition: parse_tree_column_attrs.h:315
Base class for all column attributes in CREATE/ALTER TABLE
Definition: parse_tree_column_attrs.h:85
decltype(Alter_info::flags) alter_info_flags_t
Definition: parse_tree_column_attrs.h:91
virtual bool is_constraint_enforced() const
Check if constraint is enforced.
Definition: parse_tree_column_attrs.h:127
virtual bool set_constraint_enforcement(bool enforced)
Update the ENFORCED/NOT ENFORCED state of the CHECK constraint.
Definition: parse_tree_column_attrs.h:137
virtual void apply_alter_info_flags(ulonglong *) const
Definition: parse_tree_column_attrs.h:94
virtual void apply_srid_modifier(std::optional< gis::srid_t > *) const
Definition: parse_tree_column_attrs.h:99
virtual bool apply_collation(Column_parse_context *, const CHARSET_INFO **to, bool *has_explicit_collation) const
Definition: parse_tree_column_attrs.h:100
virtual void apply_gen_default_value(Value_generator **)
Definition: parse_tree_column_attrs.h:97
PT_column_attr_base(const POS &pos)
Definition: parse_tree_column_attrs.h:87
virtual void apply_on_update_value(Item **) const
Definition: parse_tree_column_attrs.h:98
virtual void apply_type_flags(ulong *) const
Definition: parse_tree_column_attrs.h:93
virtual void apply_comment(LEX_CSTRING *) const
Definition: parse_tree_column_attrs.h:95
virtual bool add_check_constraints(Sql_check_constraint_spec_list *check_const_list)
Definition: parse_tree_column_attrs.h:106
virtual bool has_constraint_enforcement() const
Check for the [NOT] ENFORCED characteristic.
Definition: parse_tree_column_attrs.h:117
virtual void apply_default_value(Item **) const
Definition: parse_tree_column_attrs.h:96
Node for the VISIBLE|INVISIBLE column attribute.
Definition: parse_tree_column_attrs.h:534
PT_column_visibility_attr(const POS &pos, bool is_visible)
Definition: parse_tree_column_attrs.h:538
PT_column_attr_base super
Definition: parse_tree_column_attrs.h:535
void apply_type_flags(unsigned long *type_flags) const override
Definition: parse_tree_column_attrs.h:540
const bool m_is_visible
Definition: parse_tree_column_attrs.h:546
Node for the [NOT] ENFORCED column attribute.
Definition: parse_tree_column_attrs.h:264
bool has_constraint_enforcement() const override
Check for the [NOT] ENFORCED characteristic.
Definition: parse_tree_column_attrs.h:269
bool is_constraint_enforced() const override
Check if constraint is enforced.
Definition: parse_tree_column_attrs.h:271
PT_constraint_enforcement_attr(const POS &pos, bool enforced)
Definition: parse_tree_column_attrs.h:266
const bool m_enforced
Definition: parse_tree_column_attrs.h:274
Node for the DATE type.
Definition: parse_tree_column_attrs.h:766
PT_date_type(const POS &pos)
Definition: parse_tree_column_attrs.h:768
Node for the DEFAULT <expression> column attribute.
Definition: parse_tree_column_attrs.h:325
void apply_type_flags(ulong *type_flags) const override
Definition: parse_tree_column_attrs.h:342
void apply_default_value(Item **value) const override
Definition: parse_tree_column_attrs.h:333
PT_default_column_attr(const POS &pos, Item *item)
Definition: parse_tree_column_attrs.h:331
bool do_contextualize(Column_parse_context *pc) override
Do all context-sensitive things and mark the node as contextualized.
Definition: parse_tree_column_attrs.h:335
Item * item
Definition: parse_tree_column_attrs.h:328
PT_column_attr_base super
Definition: parse_tree_column_attrs.h:326
Definition: parse_tree_column_attrs.h:854
PT_enum_type_tmpl(const POS &pos, List< String > *interval_list, const CHARSET_INFO *charset, bool force_binary)
Definition: parse_tree_column_attrs.h:862
List< String > *const interval_list
Definition: parse_tree_column_attrs.h:855
const CHARSET_INFO * charset
Definition: parse_tree_column_attrs.h:856
const bool force_binary
Definition: parse_tree_column_attrs.h:857
List< String > * get_interval_list() const override
Definition: parse_tree_column_attrs.h:875
const CHARSET_INFO * get_charset() const override
Definition: parse_tree_column_attrs.h:871
ulong get_type_flags() const override
Definition: parse_tree_column_attrs.h:872
std::remove_const< decltype(PT_type::type)>::type Parent_type
Definition: parse_tree_column_attrs.h:859
Base class for both generated and regular column definitions.
Definition: parse_tree_column_attrs.h:918
bool do_contextualize(Parse_context *pc) override
Definition: parse_tree_column_attrs.h:949
bool contextualize_attrs(Column_parse_context *pc, Mem_root_array< T * > *attrs)
Definition: parse_tree_column_attrs.h:968
LEX_CSTRING comment
Definition: parse_tree_column_attrs.h:932
enum_field_types type
Definition: parse_tree_column_attrs.h:923
decltype(Alter_info::flags) alter_info_flags_t
Definition: parse_tree_column_attrs.h:920
Value_generator * gcol_info
Definition: parse_tree_column_attrs.h:935
const CHARSET_INFO * charset
Definition: parse_tree_column_attrs.h:927
List< String > * interval_list
Definition: parse_tree_column_attrs.h:930
const char * dec
Definition: parse_tree_column_attrs.h:926
bool has_explicit_collation
Definition: parse_tree_column_attrs.h:928
Item * on_update_value
Definition: parse_tree_column_attrs.h:934
std::optional< gis::srid_t > m_srid
Definition: parse_tree_column_attrs.h:938
const char * length
Definition: parse_tree_column_attrs.h:925
Parse_tree_node super
Definition: parse_tree_column_attrs.h:919
PT_type * type_node
Definition: parse_tree_column_attrs.h:943
alter_info_flags_t alter_info_flags
Definition: parse_tree_column_attrs.h:931
Item * default_value
Definition: parse_tree_column_attrs.h:933
Value_generator * default_val_info
Holds the expression to generate default values.
Definition: parse_tree_column_attrs.h:937
PT_field_def_base(const POS &pos, PT_type *type_node)
Definition: parse_tree_column_attrs.h:945
Sql_check_constraint_spec_list * check_const_spec_list
Definition: parse_tree_column_attrs.h:940
ulong type_flags
Definition: parse_tree_column_attrs.h:924
uint uint_geom_type
Definition: parse_tree_column_attrs.h:929
Base class for regular (non-generated) column definition nodes.
Definition: parse_tree_column_attrs.h:994
PT_field_def_base super
Definition: parse_tree_column_attrs.h:995
Mem_root_array< PT_column_attr_base * > * opt_attrs
Definition: parse_tree_column_attrs.h:997
bool do_contextualize(Parse_context *pc_arg) override
Definition: parse_tree_column_attrs.h:1004
PT_field_def(const POS &pos, PT_type *type_node_arg, Mem_root_array< PT_column_attr_base * > *opt_attrs)
Definition: parse_tree_column_attrs.h:1000
Node for the generated default value, column attribute.
Definition: parse_tree_column_attrs.h:497
Value_generator m_default_value_expression
Definition: parse_tree_column_attrs.h:526
void apply_gen_default_value(Value_generator **default_value_expression) override
Definition: parse_tree_column_attrs.h:507
PT_column_attr_base super
Definition: parse_tree_column_attrs.h:498
PT_generated_default_val_column_attr(const POS &pos, Item *expr)
Definition: parse_tree_column_attrs.h:501
bool do_contextualize(Column_parse_context *pc) override
Do all context-sensitive things and mark the node as contextualized.
Definition: parse_tree_column_attrs.h:512
Base class for generated column definition nodes.
Definition: parse_tree_column_attrs.h:1019
Item * expr
Definition: parse_tree_column_attrs.h:1023
Mem_root_array< PT_column_attr_base * > * opt_attrs
Definition: parse_tree_column_attrs.h:1024
bool do_contextualize(Parse_context *pc_arg) override
Definition: parse_tree_column_attrs.h:1035
PT_field_def_base super
Definition: parse_tree_column_attrs.h:1020
PT_generated_field_def(const POS &pos, PT_type *type_node_arg, Item *expr, Virtual_or_stored virtual_or_stored, Mem_root_array< PT_column_attr_base * > *opt_attrs)
Definition: parse_tree_column_attrs.h:1027
const Virtual_or_stored virtual_or_stored
Definition: parse_tree_column_attrs.h:1022
Node for the JSON type.
Definition: parse_tree_column_attrs.h:907
PT_json_type(const POS &pos)
Definition: parse_tree_column_attrs.h:909
const CHARSET_INFO * get_charset() const override
Definition: parse_tree_column_attrs.h:910
Node for the NOT NULL column attribute.
Definition: parse_tree_column_attrs.h:161
PT_not_null_column_attr(const POS &pos)
Definition: parse_tree_column_attrs.h:163
void apply_type_flags(ulong *type_flags) const override
Definition: parse_tree_column_attrs.h:164
Node for the NULL column attribute.
Definition: parse_tree_column_attrs.h:147
PT_null_column_attr(const POS &pos)
Definition: parse_tree_column_attrs.h:149
void apply_type_flags(ulong *type_flags) const override
Definition: parse_tree_column_attrs.h:150
Node for numeric types.
Definition: parse_tree_column_attrs.h:584
const char * get_dec() const override
Definition: parse_tree_column_attrs.h:630
PT_numeric_type(const POS &pos, THD *thd, Numeric_type type_arg, const char *length, const char *dec, ulong options)
Definition: parse_tree_column_attrs.h:592
std::remove_const< decltype(PT_type::type)>::type Parent_type
Definition: parse_tree_column_attrs.h:589
const char * dec
Definition: parse_tree_column_attrs.h:586
ulong get_type_flags() const override
Definition: parse_tree_column_attrs.h:626
const char * get_length() const override
Definition: parse_tree_column_attrs.h:629
PT_numeric_type(const POS &pos, THD *thd, Int_type type_arg, const char *length, ulong options)
Definition: parse_tree_column_attrs.h:611
ulong options
Definition: parse_tree_column_attrs.h:587
const char * length
Definition: parse_tree_column_attrs.h:585
Node for the UPDATE NOW[([<precision>])] column attribute.
Definition: parse_tree_column_attrs.h:352
PT_on_update_column_attr(const POS &pos, uint8 precision)
Definition: parse_tree_column_attrs.h:359
bool do_contextualize(Column_parse_context *pc) override
Do all context-sensitive things and mark the node as contextualized.
Definition: parse_tree_column_attrs.h:363
const uint8 precision
Definition: parse_tree_column_attrs.h:355
void apply_on_update_value(Item **value) const override
Definition: parse_tree_column_attrs.h:361
Item * item
Definition: parse_tree_column_attrs.h:356
PT_column_attr_base super
Definition: parse_tree_column_attrs.h:353
Node for the PRIMARY [KEY] column attribute.
Definition: parse_tree_column_attrs.h:207
void apply_alter_info_flags(ulonglong *flags) const override
Definition: parse_tree_column_attrs.h:216
void apply_type_flags(ulong *type_flags) const override
Definition: parse_tree_column_attrs.h:212
PT_primary_key_column_attr(const POS &pos)
Definition: parse_tree_column_attrs.h:209
Node for the NOT SECONDARY column attribute.
Definition: parse_tree_column_attrs.h:174
PT_secondary_column_attr(const POS &pos)
Definition: parse_tree_column_attrs.h:176
void apply_type_flags(unsigned long *type_flags) const override
Definition: parse_tree_column_attrs.h:178
Node for the SERIAL DEFAULT VALUE column attribute.
Definition: parse_tree_column_attrs.h:404
void apply_alter_info_flags(ulonglong *flags) const override
Definition: parse_tree_column_attrs.h:413
PT_column_attr_base super
Definition: parse_tree_column_attrs.h:405
bool do_contextualize(Column_parse_context *pc) override
Do all context-sensitive things and mark the node as contextualized.
Definition: parse_tree_column_attrs.h:416
void apply_type_flags(ulong *type_flags) const override
Definition: parse_tree_column_attrs.h:410
PT_serial_default_value_column_attr(const POS &pos)
Definition: parse_tree_column_attrs.h:408
Definition: parse_tree_column_attrs.h:892
ulong get_type_flags() const override
Definition: parse_tree_column_attrs.h:896
bool is_serial_type() const override
Definition: parse_tree_column_attrs.h:899
PT_serial_type(const POS &pos)
Definition: parse_tree_column_attrs.h:894
Node for spatial types.
Definition: parse_tree_column_attrs.h:839
const CHARSET_INFO * get_charset() const override
Definition: parse_tree_column_attrs.h:846
Field::geometry_type geo_type
Definition: parse_tree_column_attrs.h:840
PT_spacial_type(const POS &pos, Field::geometry_type geo_type)
Definition: parse_tree_column_attrs.h:843
uint get_uint_geom_type() const override
Definition: parse_tree_column_attrs.h:847
const char * get_length() const override
Definition: parse_tree_column_attrs.h:848
Node for the SRID column attribute.
Definition: parse_tree_column_attrs.h:482
PT_srid_column_attr(const POS &pos, gis::srid_t srid)
Definition: parse_tree_column_attrs.h:488
void apply_srid_modifier(std::optional< gis::srid_t > *srid) const override
Definition: parse_tree_column_attrs.h:491
gis::srid_t m_srid
Definition: parse_tree_column_attrs.h:485
PT_column_attr_base super
Definition: parse_tree_column_attrs.h:483
Node for the TIME, TIMESTAMP and DATETIME types.
Definition: parse_tree_column_attrs.h:781
PT_time_type(const POS &pos, Time_type time_type, const char *dec)
Definition: parse_tree_column_attrs.h:787
const char * dec
Definition: parse_tree_column_attrs.h:782
const char * get_dec() const override
Definition: parse_tree_column_attrs.h:790
std::remove_const< decltype(PT_type::type)>::type Parent_type
Definition: parse_tree_column_attrs.h:784
Node for the TIMESTAMP type.
Definition: parse_tree_column_attrs.h:798
ulong type_flags
Definition: parse_tree_column_attrs.h:802
const char * dec
Definition: parse_tree_column_attrs.h:801
const char * get_dec() const override
Definition: parse_tree_column_attrs.h:808
bool do_contextualize(Parse_context *pc) override
Definition: parse_tree_column_attrs.h:811
ulong get_type_flags() const override
Definition: parse_tree_column_attrs.h:809
PT_timestamp_type(const POS &pos, const char *dec)
Definition: parse_tree_column_attrs.h:805
PT_type super
Definition: parse_tree_column_attrs.h:799
Base class for all column type nodes.
Definition: parse_tree_column_attrs.h:556
virtual bool is_serial_type() const
Definition: parse_tree_column_attrs.h:571
virtual ulong get_type_flags() const
Definition: parse_tree_column_attrs.h:565
virtual const char * get_length() const
Definition: parse_tree_column_attrs.h:566
virtual const CHARSET_INFO * get_charset() const
Definition: parse_tree_column_attrs.h:568
virtual List< String > * get_interval_list() const
Definition: parse_tree_column_attrs.h:570
const enum_field_types type
Definition: parse_tree_column_attrs.h:558
virtual uint get_uint_geom_type() const
Definition: parse_tree_column_attrs.h:569
PT_type(const POS &pos, enum_field_types type)
Definition: parse_tree_column_attrs.h:561
virtual const char * get_dec() const
Definition: parse_tree_column_attrs.h:567
Node for the UNIQUE [KEY] column attribute.
Definition: parse_tree_column_attrs.h:188
void apply_alter_info_flags(ulonglong *flags) const override
Definition: parse_tree_column_attrs.h:197
PT_unique_key_column_attr(const POS &pos)
Definition: parse_tree_column_attrs.h:190
void apply_type_flags(ulong *type_flags) const override
Definition: parse_tree_column_attrs.h:193
Definition: parse_tree_column_attrs.h:693
char vector_length_buffer[33]
Definition: parse_tree_column_attrs.h:694
PT_vector_type(const POS &pos, const char *length)
Definition: parse_tree_column_attrs.h:697
const char * get_length() const override
Definition: parse_tree_column_attrs.h:704
const CHARSET_INFO * get_charset() const override
Definition: parse_tree_column_attrs.h:705
Node for the YEAR type.
Definition: parse_tree_column_attrs.h:756
PT_year_type(const POS &pos)
Definition: parse_tree_column_attrs.h:758
Base class for parse tree nodes (excluding the Parse_tree_root hierarchy)
Definition: parse_tree_node_base.h:231
virtual bool contextualize(Context *pc) final
Definition: parse_tree_node_base.h:319
virtual bool do_contextualize(Column_parse_context *pc)
Do all context-sensitive things and mark the node as contextualized.
Definition: parse_tree_node_base.h:283
POS m_pos
Definition: parse_tree_node_base.h:244
This class represents a query block, aka a query specification, which is a query consisting of a SELE...
Definition: sql_lex.h:1159
Class to represent the check constraint specifications obtained from the SQL statement parse.
Definition: sql_check_constraint.h:43
Item * check_expr
Check constraint expression.
Definition: sql_check_constraint.h:80
bool is_enforced
Check constraint state (enforced/not enforced)
Definition: sql_check_constraint.h:86
LEX_STRING name
Name of the check constraint.
Definition: sql_check_constraint.h:77
@ SL_WARNING
Definition: sql_error.h:63
Using this class is fraught with peril, and you need to be very careful when doing so.
Definition: sql_string.h:167
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
LEX * lex
Definition: sql_class.h:1001
void syntax_error_at(const POS &location)
Definition: sql_class.h:4484
System_variables variables
Definition: sql_lexer_thd.h:64
bool binlog_need_explicit_defaults_ts
The member is served for marking a query that CREATEs or ALTERs a table declared with a TIMESTAMP col...
Definition: sql_class.h:2658
MEM_ROOT * mem_root
Definition: sql_lexer_thd.h:40
Used for storing information associated with generated column, default values generated from expressi...
Definition: field.h:485
void set_field_stored(bool stored)
Definition: field.h:538
void set_field_type(enum_field_types fld_type)
Definition: field.h:521
Item * expr_item
Item representing the generation expression.
Definition: field.h:495
Mem_root_array< Sql_check_constraint_spec * > Sql_check_constraint_spec_list
Definition: dd_table.h:50
const char * ER_THD(const THD *thd, int mysql_errno)
Definition: derror.cc:104
This file contains the field type.
enum_field_types
Column types for MySQL Note: Keep include/mysql/components/services/bits/stored_program_bits....
Definition: field_types.h:55
@ MYSQL_TYPE_TIME2
Internal to MySQL.
Definition: field_types.h:75
@ MYSQL_TYPE_VARCHAR
Definition: field_types.h:71
@ MYSQL_TYPE_LONGLONG
Definition: field_types.h:64
@ MYSQL_TYPE_LONG_BLOB
Definition: field_types.h:86
@ MYSQL_TYPE_BLOB
Definition: field_types.h:87
@ MYSQL_TYPE_TINY
Definition: field_types.h:57
@ MYSQL_TYPE_SET
Definition: field_types.h:83
@ MYSQL_TYPE_VECTOR
Definition: field_types.h:77
@ MYSQL_TYPE_JSON
Definition: field_types.h:80
@ MYSQL_TYPE_STRING
Definition: field_types.h:89
@ MYSQL_TYPE_ENUM
Definition: field_types.h:82
@ MYSQL_TYPE_TINY_BLOB
Definition: field_types.h:84
@ MYSQL_TYPE_BIT
Definition: field_types.h:72
@ MYSQL_TYPE_INVALID
Definition: field_types.h:78
@ MYSQL_TYPE_GEOMETRY
Definition: field_types.h:90
@ MYSQL_TYPE_MEDIUM_BLOB
Definition: field_types.h:85
@ MYSQL_TYPE_DATETIME2
Internal to MySQL.
Definition: field_types.h:74
@ MYSQL_TYPE_DATE
Definition: field_types.h:66
@ MYSQL_TYPE_TIMESTAMP2
Definition: field_types.h:73
@ MYSQL_TYPE_YEAR
Definition: field_types.h:69
bool merge_charset_and_collation(const CHARSET_INFO *charset, const CHARSET_INFO *collation, const CHARSET_INFO **to)
(end of group Runtime_Environment)
Definition: sql_parse.cc:7219
void my_error(int nr, myf MyFlags,...)
Fill in and print a previously registered error message.
Definition: my_error.cc:216
#define PRI_KEY_FLAG
Field is part of a primary key.
Definition: mysql_com.h:155
#define FIELD_FLAGS_COLUMN_FORMAT
Field column format, bit 24-25.
Definition: mysql_com.h:187
#define ZEROFILL_FLAG
Field is zerofill.
Definition: mysql_com.h:160
#define UNSIGNED_FLAG
Field is unsigned.
Definition: mysql_com.h:159
#define UNIQUE_FLAG
Intern: Used by sql_yacc.
Definition: mysql_com.h:173
#define AUTO_INCREMENT_FLAG
field is a autoincrement field
Definition: mysql_com.h:165
#define FIELD_FLAGS_COLUMN_FORMAT_MASK
Definition: mysql_com.h:188
#define NOT_NULL_FLAG
Field can't be NULL.
Definition: mysql_com.h:154
#define BINCMP_FLAG
Intern: Used by sql_yacc.
Definition: mysql_com.h:174
#define FIELD_IS_INVISIBLE
Field is explicitly marked as invisible by the user.
Definition: mysql_com.h:198
#define EXPLICIT_NULL_FLAG
Field is explicitly specified as \ NULL by the user.
Definition: mysql_com.h:190
#define FIELD_FLAGS_STORAGE_MEDIA_MASK
Definition: mysql_com.h:186
#define NOT_SECONDARY_FLAG
Field will not be loaded in secondary engine.
Definition: mysql_com.h:196
#define FIELD_FLAGS_STORAGE_MEDIA
Field storage media, bit 22-23.
Definition: mysql_com.h:185
static int flags[50]
Definition: hp_test1.cc:40
constexpr const LEX_CSTRING EMPTY_CSTR
Definition: lex_string.h:48
A better implementation of the UNIX ctype(3) library.
MYSQL_STRINGS_EXPORT CHARSET_INFO my_charset_bin
Definition: ctype-bin.cc:500
This file follows Google coding style, except for the name MEM_ROOT (which is kept for historical rea...
This file includes constants used by all storage engines.
ha_storage_media
Definition: my_base.h:116
Header for compiler-dependent features.
Some integer typedefs for easier portability.
unsigned long long int ulonglong
Definition: my_inttypes.h:56
uint8_t uint8
Definition: my_inttypes.h:63
#define MYF(v)
Definition: my_inttypes.h:97
Common header for many mysys elements.
Common definition between mysql server & client.
const char * collation
Definition: audit_api_message_emit.cc:184
bool length(const dd::Spatial_reference_system *srs, const Geometry *g1, double *length, bool *null) noexcept
Computes the length of linestrings and multilinestrings.
Definition: length.cc:76
std::uint32_t srid_t
A spatial reference system ID (SRID).
Definition: srid.h:33
Definition: options.cc:57
Blob_type
Definition: parse_tree_column_attrs.h:708
Enum_type
Definition: parse_tree_column_attrs.h:851
Char_type
Definition: parse_tree_column_attrs.h:661
PT_enum_type_tmpl< Enum_type::ENUM > PT_enum_type
Node for the ENUM type.
Definition: parse_tree_column_attrs.h:883
PT_enum_type_tmpl< Enum_type::SET > PT_set_type
Node for the SET type.
Definition: parse_tree_column_attrs.h:890
Time_type
Definition: parse_tree_column_attrs.h:771
void move_cf_appliers(Parse_context *tddlpc, Column_parse_context *cpc)
Definition: parse_tree_helpers.cc:439
Int_type
Definition: parser_yystype.h:247
Numeric_type
Definition: parser_yystype.h:255
Virtual_or_stored
Definition: parser_yystype.h:245
column_format_type
Definition: field.h:192
void push_warning(THD *thd, Sql_condition::enum_severity_level severity, uint code, const char *message_text)
Push the warning to error list if there is still room in the list.
Definition: sql_error.cc:659
case opt name
Definition: sslopt-case.h:29
Definition: m_ctype.h:421
Parse context for column type attribute specific parse tree nodes.
Definition: parse_tree_column_attrs.h:73
const bool is_generated
Owner column is a generated one.
Definition: parse_tree_column_attrs.h:74
std::vector< CreateFieldApplier > cf_appliers
Definition: parse_tree_column_attrs.h:75
Column_parse_context(THD *thd_arg, Query_block *select_arg, bool is_generated)
Definition: parse_tree_column_attrs.h:76
bool binlog_need_explicit_defaults_ts
Definition: sql_lex.h:4449
Definition: mysql_lex_string.h:40
Definition: mysql_lex_string.h:35
Bison "location" class.
Definition: parse_location.h:43
Environment data for the contextualization phase.
Definition: parse_tree_node_base.h:420
Query_block * select
Current Query_block object.
Definition: parse_tree_node_base.h:423
THD *const thd
Current thread handler.
Definition: parse_tree_node_base.h:421
MEM_ROOT * mem_root
Current MEM_ROOT.
Definition: parse_tree_node_base.h:422