diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-12-17 12:01:31 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-12-17 12:01:31 -0500 |
commit | 566143a9c881c9e506c79af3f3cc39abebc37d8f (patch) | |
tree | 9979ef0b3677541c9738b8545ab89d958248daf2 /lib | |
parent | 7577d3e972e5050af4752571a584a5f107505ec8 (diff) |
SQL lower() and upper() functions
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ur/basis.urs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs index fcce3a01..83f23cae 100644 --- a/lib/ur/basis.urs +++ b/lib/ur/basis.urs @@ -565,7 +565,8 @@ val sql_ufunc : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type} -> sql_exp tables agg exps ran val sql_octet_length : sql_ufunc blob int val sql_known : t ::: Type -> sql_ufunc t bool - +val sql_lower : sql_ufunc string string +val sql_upper : sql_ufunc string string val sql_nullable : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type} -> t ::: Type -> sql_injectable_prim t |