summaryrefslogtreecommitdiff
path: root/src/settings.sig
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2018-06-03 15:01:24 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2018-06-03 15:01:24 -0400
commitf3373fd5809689bece7fd390f2d737aa0b43f594 (patch)
tree739be9eaa093fbf25bc69317811b869775c1ba80 /src/settings.sig
parent1c493e9ec47f4754dd7237078e8c4f3300925ce3 (diff)
'filecache' .urp directive, fixing a longstanding MonoUtil bug in the process
Diffstat (limited to 'src/settings.sig')
-rw-r--r--src/settings.sig6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/settings.sig b/src/settings.sig
index 729218ac..986d6ed7 100644
--- a/src/settings.sig
+++ b/src/settings.sig
@@ -219,7 +219,8 @@ signature SETTINGS = sig
onlyUnion : bool,
nestedRelops : bool,
windowFunctions : bool,
- supportsIsDistinctFrom : bool
+ supportsIsDistinctFrom : bool,
+ supportsSHA512 : bool
}
val addDbms : dbms -> unit
@@ -253,6 +254,9 @@ signature SETTINGS = sig
val setSigFile : string option -> unit
val getSigFile : unit -> string option
+ val setFileCache : string option -> unit
+ val getFileCache : unit -> string option
+
(* Which GET-able functions should be allowed to have side effects? *)
val setSafeGets : string list -> unit
val isSafeGet : string -> bool