pub(crate) const RESERVED_KEYWORDS: &[&str] = &[
"all",
"analyse",
"analyze",
"and",
"any",
"array",
"as",
"asc",
"asymmetric",
"both",
"case",
"cast",
"check",
"collate",
"column",
"constraint",
"create",
"current_catalog",
"current_date",
"current_role",
"current_time",
"current_timestamp",
"current_user",
"default",
"deferrable",
"desc",
"distinct",
"do",
"else",
"end",
"except",
"false",
"fetch",
"for",
"foreign",
"from",
"grant",
"group",
"having",
"in",
"initially",
"intersect",
"into",
"lateral",
"leading",
"limit",
"localtime",
"localtimestamp",
"not",
"null",
"offset",
"on",
"only",
"or",
"order",
"placing",
"primary",
"references",
"returning",
"select",
"session_user",
"some",
"symmetric",
"system_user",
"table",
"then",
"to",
"trailing",
"true",
"union",
"unique",
"user",
"using",
"variadic",
"when",
"where",
"window",
"with",
];
pub(crate) const TYPE_FUNC_NAME_KEYWORDS: &[&str] = &[
"authorization",
"binary",
"collation",
"concurrently",
"cross",
"current_schema",
"freeze",
"full",
"ilike",
"inner",
"is",
"isnull",
"join",
"left",
"like",
"natural",
"notnull",
"outer",
"overlaps",
"right",
"similar",
"tablesample",
"verbose",
];
pub(crate) const COL_NAME_KEYWORDS: &[&str] = &[
"between",
"bigint",
"bit",
"boolean",
"char",
"character",
"coalesce",
"dec",
"decimal",
"exists",
"extract",
"float",
"graph_table",
"greatest",
"grouping",
"inout",
"int",
"integer",
"interval",
"json",
"json_array",
"json_arrayagg",
"json_exists",
"json_object",
"json_objectagg",
"json_query",
"json_scalar",
"json_serialize",
"json_table",
"json_value",
"least",
"merge_action",
"national",
"nchar",
"none",
"normalize",
"nullif",
"numeric",
"out",
"overlay",
"position",
"precision",
"real",
"row",
"setof",
"smallint",
"substring",
"time",
"timestamp",
"treat",
"trim",
"values",
"varchar",
"xmlattributes",
"xmlconcat",
"xmlelement",
"xmlexists",
"xmlforest",
"xmlnamespaces",
"xmlparse",
"xmlpi",
"xmlroot",
"xmlserialize",
"xmltable",
];
pub(crate) const AS_LABEL_KEYWORDS: &[&str] = &[
"array",
"as",
"char",
"character",
"create",
"day",
"except",
"fetch",
"filter",
"for",
"from",
"grant",
"group",
"having",
"hour",
"ignore",
"intersect",
"into",
"isnull",
"limit",
"minute",
"month",
"notnull",
"offset",
"on",
"order",
"over",
"overlaps",
"precision",
"respect",
"returning",
"second",
"to",
"union",
"varying",
"where",
"window",
"with",
"within",
"without",
"year",
];