annotate tests/pkey.ur @ 1989:210fb3dfc483

Some more nested functor bug-fixing, including generating fresh internal names at applications; still need to debug issues with datatype constructors
author Adam Chlipala <adam@chlipala.net>
date Thu, 20 Feb 2014 10:27:15 -0500
parents d8217b4cb617
children
rev   line source
adamc@707 1 table t : {A : int, B : int}
adamc@707 2 PRIMARY KEY (A, B)
adamc@707 3
adamc@707 4 fun main () : transaction page =
adamc@707 5 queryI (SELECT * FROM t) (fn _ => return ());
adamc@707 6 return <xml/>