summaryrefslogtreecommitdiff
path: root/tests/delete.ur
blob: 45df15aba37100d9e76ba9249cb9031fc3d156f2 (plain)
1
2
3
4
5
table t1 : {A : int, B : string, C : float, D : bool}

fun main () : transaction page =
        () <- dml (delete t1 (WHERE T.A = 5));
        return <html><body>Deleted.</body></html>