You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Fix merge errors
This commit is contained in:
@ -198,6 +198,7 @@ VARYING WITH ZONE DOUBLE IDB_FLOAT REAL CHARSET IDB_IF EXISTS CHANGE TRUNCATE
|
|||||||
%type <str> opt_if_not_exists
|
%type <str> opt_if_not_exists
|
||||||
%type <sqlStmt> trunc_table_statement
|
%type <sqlStmt> trunc_table_statement
|
||||||
%type <sqlStmt> rename_table_statement
|
%type <sqlStmt> rename_table_statement
|
||||||
|
%type <str> ident
|
||||||
|
|
||||||
%%
|
%%
|
||||||
stmtblock: stmtmulti { x->fParseTree = $1; }
|
stmtblock: stmtmulti { x->fParseTree = $1; }
|
||||||
@ -615,7 +616,7 @@ table_name:
|
|||||||
;
|
;
|
||||||
|
|
||||||
qualified_name:
|
qualified_name:
|
||||||
| ident {
|
ident {
|
||||||
if (x->fDBSchema.size())
|
if (x->fDBSchema.size())
|
||||||
$$ = new QualifiedName((char*)x->fDBSchema.c_str(), $1);
|
$$ = new QualifiedName((char*)x->fDBSchema.c_str(), $1);
|
||||||
else
|
else
|
||||||
|
@ -81,6 +81,7 @@ public:
|
|||||||
{
|
{
|
||||||
return fReadBufSize;
|
return fReadBufSize;
|
||||||
}
|
}
|
||||||
|
int getMode()
|
||||||
{
|
{
|
||||||
return fMode;
|
return fMode;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user