aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--odb/oracle/query.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/odb/oracle/query.cxx b/odb/oracle/query.cxx
index f561a63..b49a007 100644
--- a/odb/oracle/query.cxx
+++ b/odb/oracle/query.cxx
@@ -112,11 +112,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));
}