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
Merge branch 'develop' into remove-infinidb
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/* Copyright (C) 2014 InfiniDB, Inc.
|
||||
Copyright (C) 2019 MariaDB Corporaton
|
||||
Copyright (C) 2019 MariaDB Corporation
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
@ -212,9 +212,9 @@ const string SimpleColumn::data() const
|
||||
if (!fData.empty())
|
||||
return fData;
|
||||
else if (!fTableAlias.empty())
|
||||
return string(fSchemaName + '.' + fTableAlias + '.' + fColumnName);
|
||||
return string("`" + fSchemaName + "`.`" + fTableAlias + "`.`" + fColumnName + "`");
|
||||
|
||||
return string(fSchemaName + '.' + fTableName + '.' + fColumnName);
|
||||
return string("`" + fSchemaName + "`.`" + fTableName + "`.`" + fColumnName + "`");
|
||||
}
|
||||
|
||||
SimpleColumn& SimpleColumn::operator=(const SimpleColumn& rhs)
|
||||
|
Reference in New Issue
Block a user