Sign in
apache
/
hive
/
master
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
check_constraint_temporary_udf.q
blob: cf68cfb13fbd43b16f8e3199d9e3085faa20be60 [
file
] [
log
] [
blame
]
--
user
defined
temporary
UDFs
are
not
allowed
CREATE TEMPORARY FUNCTION test_udf2 AS
'org.apache.hadoop.hive.ql.udf.generic.GenericUDFTestGetJavaString'
;
CREATE TABLE tudf
(
v
string
CHECK
(
test_udf2
(
v
)
<>
'vin'
));