annotate tests/pkey.ur @ 2207:f0f7bf234893

Removes DBMS choice override from compiler.sml (which was there for debugging).
author Ziv Scully <ziv@mit.edu>
date Fri, 30 May 2014 12:00:00 -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/>