From 26e36b3a9d7b49d46ecfa69b447482251acba8ac Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 24 Jan 2024 16:53:38 +0300 Subject: Turn libodb repository into package for muti-package repository --- libodb/odb/query-dynamic.ixx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 libodb/odb/query-dynamic.ixx (limited to 'libodb/odb/query-dynamic.ixx') diff --git a/libodb/odb/query-dynamic.ixx b/libodb/odb/query-dynamic.ixx new file mode 100644 index 0000000..8de7b8e --- /dev/null +++ b/libodb/odb/query-dynamic.ixx @@ -0,0 +1,18 @@ +// 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& 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); + } +} -- cgit v1.1