view tests/policy.ur @ 1201:8793fd48968c

Generating a good Iflow condition for a test query
author Adam Chlipala <adamc@hcoop.net>
date Sun, 04 Apr 2010 15:17:57 -0400
parents 5eac14322548
children 509a6d7b60fb
line wrap: on
line source
table fruit : { Id : int, Nam : string, Weight : float, Secret : string }

policy query_policy (SELECT fruit.Id, fruit.Nam, fruit.Weight FROM fruit)

fun main () =
    xml <- queryX (SELECT fruit.Id, fruit.Nam
                   FROM fruit)
           (fn x => <xml><li>{[x.Fruit.Nam]}</li></xml>);

    return <xml><body>
      {xml}
    </body></xml>