annotate tests/pkey.ur @ 1264:79b2bcac6200

Fix bug in module path generation with module roots; push wildification through substructures
author Adam Chlipala <adamc@hcoop.net>
date Thu, 27 May 2010 10:56:52 -0400
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/>