annotate tests/user.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 d1dbb9a3c804
children
rev   line source
adamc@986 1 table user : {A : int}
adamc@986 2
adamc@986 3 fun main () =
adamc@986 4 r <- oneRow (SELECT COUNT( * ) AS N FROM user);
adamc@986 5 return <xml>{[r.N]}</xml>