aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/query-const-expr.cxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-10-25 07:20:24 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-10-26 15:43:00 +0200
commit4a23d7554de82ba24d10bfc6d165157d113fa447 (patch)
treea96e57cc92745466fee5a9678d8e6c9e33652580 /odb/oracle/query-const-expr.cxx
parent9ce6c9851b48e575f712b6c30520211315811253 (diff)
Add query and result implementations
Diffstat (limited to 'odb/oracle/query-const-expr.cxx')
-rw-r--r--odb/oracle/query-const-expr.cxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/odb/oracle/query-const-expr.cxx b/odb/oracle/query-const-expr.cxx
new file mode 100644
index 0000000..e5fa2d0
--- /dev/null
+++ b/odb/oracle/query-const-expr.cxx
@@ -0,0 +1,16 @@
+// file : odb/oracle/query-const-expr.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : ODB NCUEL; see accompanying LICENSE file
+
+#include <odb/oracle/query.hxx>
+
+namespace odb
+{
+ namespace oracle
+ {
+ // Sun CC cannot handle this in query.cxx.
+ //
+ const query query::true_expr (true);
+ }
+}