Mercurial > urweb
view tests/insert.ur @ 2099:8efba492c48b
Fix a bug in subsignature checking for submodules
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Tue, 30 Dec 2014 17:02:31 -0500 |
parents | bc89dfdbc495 |
children |
line wrap: on
line source
table t1 : {A : int, B : string, C : float, D : bool} fun main () : transaction page = () <- dml (INSERT INTO t1 (A, B, C, D) VALUES (5, "6", 7.0, TRUE)); return <html><body>Inserted.</body></html>