You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL-4144 Enable lower_case_table_names
Create tables and schemas with lower case name only if the flag is set. During operations, convert to lowercase in plugin. Byt the time a query gets to ExeMgr, DDLProc etc., everything must be lower case if the flag is set, and undisturbed if not.
This commit is contained in:
@ -46,17 +46,6 @@ namespace execplan
|
||||
typedef std::stack<ParseTree*> OperandStack;
|
||||
typedef std::stack<TreeNode*> OperatorStack;
|
||||
|
||||
/**@brief util struct for converting string to lower case
|
||||
*
|
||||
*/
|
||||
struct to_lower
|
||||
{
|
||||
char operator() (char c) const
|
||||
{
|
||||
return tolower(c);
|
||||
}
|
||||
};
|
||||
|
||||
/**@brief a structure to respent a token accepted by the parser
|
||||
*
|
||||
* token structure
|
||||
|
Reference in New Issue
Block a user