aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/query.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/mysql/query.cxx')
-rw-r--r--odb/mysql/query.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/odb/mysql/query.cxx b/odb/mysql/query.cxx
index fec8031..b82b1ac 100644
--- a/odb/mysql/query.cxx
+++ b/odb/mysql/query.cxx
@@ -111,11 +111,9 @@ namespace odb
void query::
append (const char* table, const char* column)
{
- string s ("`");
- s += table;
- s += "`.`";
+ string s (table);
+ s += '.';
s += column;
- s += '`';
clause_.push_back (clause_part (clause_part::column, s));
}