aboutsummaryrefslogtreecommitdiff
path: root/lib/analysers/query.mli
diff options
context:
space:
mode:
Diffstat (limited to 'lib/analysers/query.mli')
-rw-r--r--lib/analysers/query.mli7
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