Files
chaisql/internal/expr/functions/testdata/builtin_functions.sql
2022-10-14 15:56:44 +08:00

36 lines
303 B
SQL

-- test: typeof
! typeof()
! typeof(a)
'field not found'
> typeof(1)
'integer'
> typeof(1 + 1)
'integer'
> typeof(2.0)
'double'
> typeof(2.0)
'double'
> typeof(true)
'boolean'
> typeof('hello')
'text'
> typeof('\xAA')
'blob'
> typeof([])
'array'
> typeof({})
'document'
> typeof(NULL)
'null'