annotate tests/league.ur @ 2237:e79ef5792c8b

Fix bug in redundancy checking and use finer formula for UPDATE statements.
author Ziv Scully <ziv@mit.edu>
date Sun, 05 Jul 2015 23:57:28 -0700
parents 5ecf67553da8
children
rev   line source
adam@1714 1 type team = string
adam@1714 2 type league = string
adam@1714 3
adam@1714 4 table team : { Id : team,
adam@1714 5 League : league }
adam@1714 6
adam@1723 7 val foo = queryL(SELECT * FROM team)
adam@1723 8 val bar : int = "hi"