aboutsummaryrefslogtreecommitdiff
path: root/lib/file_handler/state.mli
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-03-17 09:11:25 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-03-17 18:59:32 +0100
commit8b8b730d3ba98d6c9e4e6274844641043b5fefbb (patch)
tree4cb60dafa05b479d0ca287d501a51db88cecaaa4 /lib/file_handler/state.mli
parent7bfbb67d83011f3e1845dcb9e44c3b6a5e93a9da (diff)
Moved the syntax module in its own library
Diffstat (limited to 'lib/file_handler/state.mli')
-rw-r--r--lib/file_handler/state.mli7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/file_handler/state.mli b/lib/file_handler/state.mli
index f744c33..8e24b1b 100644
--- a/lib/file_handler/state.mli
+++ b/lib/file_handler/state.mli
@@ -15,7 +15,7 @@ type insert_result = {
type ('a, 'b) mapper = {
get_row : 'b -> 'a Array.t;
- get_value : 'a -> ImportCSV.DataType.t;
+ get_value : 'a -> ImportDataTypes.Value.t;
default : 'a;
}
@@ -41,6 +41,7 @@ val clear :
log_error:ImportErrors.t ->
'a ImportSQL.Db.t ->
ImportAnalyser.Dependency.t ->
- ImportConf.Syntax.t ->
+ ImporterSyntax.t ->
unit ImportSQL.Db.result
-(** Clean up the table after the insertion, check for the duplicates and external references *)
+(** Clean up the table after the insertion, check for the duplicates and
+ external references *)