summaryrefslogtreecommitdiff
path: root/odb/query-dynamic.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/query-dynamic.ixx')
-rw-r--r--odb/query-dynamic.ixx18
1 files changed, 0 insertions, 18 deletions
diff --git a/odb/query-dynamic.ixx b/odb/query-dynamic.ixx
deleted file mode 100644
index 8de7b8e..0000000
--- a/odb/query-dynamic.ixx
+++ /dev/null
@@ -1,18 +0,0 @@
-// file : odb/query-dynamic.ixx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-namespace odb
-{
- // query_base
- //
- inline query_base::
- query_base (const query_column<bool>& c)
- {
- // Some databases provide the IS TRUE operator. However, we cannot
- // use it since the column type might now be SQL boolean type.
- //
- append (c.native_info);
- append_val (true, c.native_info);
- append (query_base::clause_part::op_eq, 0);
- }
-}