aboutsummaryrefslogtreecommitdiff
path: root/lib/analysers/chunk.mli
diff options
context:
space:
mode:
Diffstat (limited to 'lib/analysers/chunk.mli')
-rw-r--r--lib/analysers/chunk.mli8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/analysers/chunk.mli b/lib/analysers/chunk.mli
index d4f69e7..13a748a 100644
--- a/lib/analysers/chunk.mli
+++ b/lib/analysers/chunk.mli
@@ -2,11 +2,11 @@
type t = {
b : Buffer.t;
- parameters : ImportCSV.DataType.t Queue.t;
+ parameters : ImportDataTypes.Value.t Queue.t;
}
val create : unit -> t
-val create' : Buffer.t -> ImportCSV.DataType.t Queue.t -> t
+val create' : Buffer.t -> ImportDataTypes.Value.t Queue.t -> t
val append : head:t -> tail:t -> unit
(** Append the element from [tail] at the end of [head]
@@ -19,7 +19,7 @@ val add_string : t -> string -> unit
val copy : t -> t
val create_from_statement_of_chunck :
- ?externals:ImportConf.Syntax.Extern.t list -> ImportConf.Syntax.t -> t -> unit
+ ?externals:ImporterSyntax.Extern.t list -> ImporterSyntax.t -> t -> unit
(** Create the from part of the query, adding all the declared externals (even
when not required)
@@ -27,7 +27,7 @@ val create_from_statement_of_chunck :
the select clause. *)
val add_expression :
- conf:ImportConf.Syntax.t ->
+ conf:ImporterSyntax.t ->
t ->
ImportDataTypes.Path.t ImportExpression.T.t ->
unit