annotate tests/league.ur @ 2266:afd12c75e0d6

Do SQL and pure caching in the same pass.
author Ziv Scully <ziv@mit.edu>
date Wed, 14 Oct 2015 15:45:04 -0400
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"