diff options
author | Adam Chlipala <adamc@hcoop.net> | 2010-04-04 12:29:34 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2010-04-04 12:29:34 -0400 |
commit | 6a326e3bb3eb16e04f3cca082f0dd67278e85785 (patch) | |
tree | 37d9f6d28314bc020e87c05ec9e7826b5e647d44 /lib | |
parent | 9615454c1218330fc2cdfa6b72af53400fa2b2c4 (diff) |
Pushing policies through
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ur/basis.urs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs index 8388e107..aad04b5f 100644 --- a/lib/ur/basis.urs +++ b/lib/ur/basis.urs @@ -795,4 +795,13 @@ type task_kind val initialize : task_kind +(** Information flow security *) + +type sql_policy + +val query_policy : tables ::: {{Type}} -> exps ::: {Type} + -> [tables ~ exps] => sql_query [] tables exps + -> sql_policy + + val debug : string -> transaction unit |