diff options
Diffstat (limited to 'lib/sql/db.mli')
-rw-r--r-- | lib/sql/db.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sql/db.mli b/lib/sql/db.mli index 478d762..91933c4 100644 --- a/lib/sql/db.mli +++ b/lib/sql/db.mli @@ -3,7 +3,7 @@ module Syntax = ImportConf.Syntax type 'a t type 'a result = ('a, exn) Result.t -val with_db : string -> ('a t -> unit result) -> unit result +val with_db : string -> ('a t -> 'b result) -> 'b result val check_table_schema : 'a t -> ImportAnalyser.Dependency.t -> bool result (** Check if a table with the same structure already exists in the database. |