Sign in
apache
/
hive
/
maven
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
invalid_cast_from_binary_2.q
blob: 50ec48152548ca6bbc62dffe564b491916f10691 [
file
] [
log
] [
blame
]
create table tbl
(
a binary
);
select
cast
(
a
as
tinyint
)
from
tbl limit
1
;