summaryrefslogtreecommitdiff
path: root/odb/relational/schema.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/relational/schema.hxx')
-rw-r--r--odb/relational/schema.hxx10
1 files changed, 2 insertions, 8 deletions
diff --git a/odb/relational/schema.hxx b/odb/relational/schema.hxx
index 7f1e1a0..df395b8 100644
--- a/odb/relational/schema.hxx
+++ b/odb/relational/schema.hxx
@@ -1202,12 +1202,6 @@ namespace relational
return 0;
}
- virtual void
- alter_header (sema_rel::qname const& table)
- {
- os << "ALTER TABLE " << quote_id (table);
- }
-
void
pass (unsigned short p)
{
@@ -1248,7 +1242,7 @@ namespace relational
// statement. Quite a few databases don't support this.
//
pre_statement ();
- alter_header (at.name ());
+ os << "ALTER TABLE " << quote_id (at.name ());
bool f (true); // Shared first flag.
bool* pf (&f); // (Im)perfect forwarding.
@@ -1360,7 +1354,7 @@ namespace relational
// statement. Quite a few databases don't support this.
//
pre_statement ();
- alter_header (at.name ());
+ os << "ALTER TABLE " << quote_id (at.name ());
bool f (true); // Shared first flag.
bool* pf (&f); // (Im)perfect forwarding.