annotate tests/policy.ur @ 1203:a75c66dd2aeb

Relax checking of table implications
author Adam Chlipala <adamc@hcoop.net>
date Sun, 04 Apr 2010 16:44:34 -0400
parents 509a6d7b60fb
children 7af5e2af64f4
rev   line source
adamc@1200 1 table fruit : { Id : int, Nam : string, Weight : float, Secret : string }
adamc@1199 2
adamc@1203 3 policy query_policy (SELECT fruit.Id, fruit.Nam, fruit.Weight FROM fruit)
adamc@1200 4
adamc@1200 5 fun main () =
adamc@1203 6 xml <- queryX (SELECT fruit.Id, fruit.Nam
adamc@1201 7 FROM fruit)
adamc@1203 8 (fn x => <xml><li>{[x.Fruit.Id]}: {[x.Fruit.Nam]}</li></xml>);
adamc@1200 9
adamc@1200 10 return <xml><body>
adamc@1200 11 {xml}
adamc@1200 12 </body></xml>