diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2024-12-11 22:04:40 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2024-12-12 14:19:48 +0100 |
commit | 39f39919fb4749787393e95503f9814912265a73 (patch) | |
tree | 57745ab257e50f9ef4d6924c3c77d51fd8fb4d4d /lib/analysers/query.mli | |
parent | 5a558038874765f20b9dc1bcb1890600e2a2065d (diff) |
Review the consistency request
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 14d2807..520718a 100644 --- a/lib/analysers/query.mli +++ b/lib/analysers/query.mli @@ -6,14 +6,13 @@ type query = { q : string; (** The query to execute *) parameters : ImportCSV.DataType.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. - *) +(** This type represent a query to execute. [q] is the template to run, and + shall be run with all the binded parameters. *) val select : Syntax.t -> query * ImportDataTypes.Path.t ImportExpression.T.t array -val check_external : Syntax.t -> Syntax.extern -> query +val check_external : Syntax.t -> Syntax.Extern.t -> query (** Create a query which select all the missing key in an external *) val build_key_insert : Buffer.t -> Dependency.key -> unit |