changeset 1246:fd4028a594a9

Better handling of DELETE and UPDATE
author Adam Chlipala <adamc@hcoop.net>
date Sun, 18 Apr 2010 14:52:13 -0400
parents 5c2555dfce8f
children 0c643f51fbc0
files src/iflow.sml
diffstat 1 files changed, 17 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/src/iflow.sml	Sun Apr 18 13:56:47 2010 -0400
+++ b/src/iflow.sml	Sun Apr 18 14:52:13 2010 -0400
@@ -798,12 +798,12 @@
             in
                 (uk andalso !(#Known (unNode d)))
                 orelse List.exists (fn b => repOf b = d) bs
-                orelse case #Variety (unNode d) of
-                           Dt0 _ => true
-                         | Dt1 (_, d) => loop d
-                         | Prim _ => true
-                         | Recrd (xes, _) => List.all loop (SM.listItems (!xes))
-                         | Nothing => false
+                orelse (case #Variety (unNode d) of
+                            Dt0 _ => true
+                          | Dt1 (_, d) => loop d
+                          | Prim _ => true
+                          | Recrd (xes, _) => List.all loop (SM.listItems (!xes))
+                          | Nothing => false)
             end
 
         fun decomp e =
@@ -1296,7 +1296,7 @@
 
                          val hyps = finder (hyps, [])
                      in
-                         findKeys (hyps, acc)
+                         findKeys (hyps, a :: acc)
                      end)
               | a :: hyps => findKeys (hyps, a :: acc)
 
@@ -1313,7 +1313,7 @@
 
         val (_, hs, _) = !hyps
     in
-        (*print "findKeys\n";*)
+        (*print "useKeys\n";*)
         loop hs
     end
 
@@ -1411,10 +1411,10 @@
             in
                 ErrorMsg.errorAt loc "The information flow policy may be violated here.";
                 Print.prefaces "Situation" [("User learns", p_exp e),
-                                            ("Hypotheses", Print.p_list p_atom hs)(*,
-                                            ("E-graph", Cc.p_database db)*)]
+                                            ("Hypotheses", Print.p_list p_atom hs),
+                                            ("E-graph", Cc.p_database db)]
             end
-    end       
+    end
 
 fun checkPaths () =
     let
@@ -1454,8 +1454,8 @@
                                                         ("hyps", Print.p_list p_atom (#2 (!hyps)))];*)
                                 true)
                            else
-                               ((*Print.prefaces "No match" [("goals", Print.p_list p_atom goals),
-                                                           ("hyps", Print.p_list p_atom (#2 (!hyps)))];*)
+                               ((*Print.prefaces "No match" [("goals", Print.p_list p_atom goals)(*,
+                                                           ("hyps", Print.p_list p_atom (#2 (!hyps)))*)];*)
                                 false)) pols then
             ()
         else
@@ -2005,7 +2005,8 @@
                                                           
                          val saved = St.stash ()
                      in
-                         St.assert [AReln (Sql (tab ^ "$Old"), [Var old])];
+                         St.assert [AReln (Sql (tab ^ "$Old"), [Var old]),
+                                    AReln (Sql (tab), [Var old])];
                          decomp {Save = St.stash,
                                  Restore = St.reinstate,
                                  Add = fn a => St.assert [a]} p
@@ -2049,7 +2050,8 @@
                          val saved = St.stash ()
                      in
                          St.assert [AReln (Sql (tab ^ "$New"), [Recd fs]),
-                                    AReln (Sql (tab ^ "$Old"), [Var old])];
+                                    AReln (Sql (tab ^ "$Old"), [Var old]),
+                                    AReln (Sql tab, [Var old])];
                          decomp {Save = St.stash,
                                  Restore = St.reinstate,
                                  Add = fn a => St.assert [a]} p