diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 09:11:25 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 18:59:32 +0100 |
commit | 8b8b730d3ba98d6c9e4e6274844641043b5fefbb (patch) | |
tree | 4cb60dafa05b479d0ca287d501a51db88cecaaa4 /lib/expression/query.mli | |
parent | 7bfbb67d83011f3e1845dcb9e44c3b6a5e93a9da (diff) |
Moved the syntax module in its own library
Diffstat (limited to 'lib/expression/query.mli')
-rw-r--r-- | lib/expression/query.mli | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/expression/query.mli b/lib/expression/query.mli index fa789a9..a124be4 100644 --- a/lib/expression/query.mli +++ b/lib/expression/query.mli @@ -1,17 +1,17 @@ module QueryParameter : sig - (** Internaly, we need to keep a different type for the Literal chunks - (which requires to be quoted), and raw (which should be given as is to the - sql engine) + (** Internaly, we need to keep a different type for the Literal chunks (which + requires to be quoted), and raw (which should be given as is to the sql + engine) - The Raw can be generated from both BindParam or NoParam queries. *) + The Raw can be generated from both BindParam or NoParam queries. *) type t = | Literal - | Queue of ImportCSV.DataType.t Queue.t + | Queue of ImportDataTypes.Value.t Queue.t | Raw of t end type _ binded_query = - | BindParam : ImportCSV.DataType.t Queue.t binded_query + | BindParam : ImportDataTypes.Value.t Queue.t binded_query | NoParam : unit binded_query val query_of_expression : |