diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-26 12:35:45 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-26 12:35:45 -0400 |
commit | 91a8659bde5f3d6aba9a356f07cc1afb31d67775 (patch) | |
tree | 122ba347fb6260488aaec3aca188e6600d0125f9 /lib | |
parent | d824fdd52fb824a6a9db9fb3cc32cfb28746d04b (diff) |
sql_ufunc and octet_length
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ur/basis.urs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs index 46218932..cd2ca588 100644 --- a/lib/ur/basis.urs +++ b/lib/ur/basis.urs @@ -363,6 +363,13 @@ val sql_nfunc : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type} -> sql_nfunc t -> sql_exp tables agg exps t val sql_current_timestamp : sql_nfunc time +con sql_ufunc :: Type -> Type -> Type +val sql_ufunc : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type} + -> dom ::: Type -> ran ::: Type + -> sql_ufunc dom ran -> sql_exp tables agg exps dom + -> sql_exp tables agg exps ran +val sql_octet_length : sql_ufunc blob int + (*** Executing queries *) |