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/analysers/query.mli | |
parent | 7bfbb67d83011f3e1845dcb9e44c3b6a5e93a9da (diff) |
Moved the syntax module in its own library
Diffstat (limited to 'lib/analysers/query.mli')
-rw-r--r-- | lib/analysers/query.mli | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/analysers/query.mli b/lib/analysers/query.mli index d158867..491c891 100644 --- a/lib/analysers/query.mli +++ b/lib/analysers/query.mli @@ -2,16 +2,15 @@ val create_table : Dependency.t -> string type query = { q : string; (** The query to execute *) - parameters : ImportCSV.DataType.t Seq.t; + parameters : ImportDataTypes.Value.t Seq.t; } (** This type represent a query to execute. [q] is the template to run, and shall be run with all the binded parameters. *) val select : - ImportConf.Syntax.t -> - query * ImportDataTypes.Path.t ImportExpression.T.t array + ImporterSyntax.t -> query * ImportDataTypes.Path.t ImportExpression.T.t array -val check_external : ImportConf.Syntax.t -> ImportConf.Syntax.Extern.t -> query +val check_external : ImporterSyntax.t -> ImporterSyntax.Extern.t -> query (** Create a query which select all the missing key in an external *) val build_key_insert : Buffer.t -> Dependency.key -> unit |