Sign in
apache
/
cloudberry
/
refs/heads/cbdb-postgres-merge
/
.
/
gpcontrib
/
orafce
/
sql
/
orafce2.sql
blob: 7d275937d8e70102b33f6a75e4bc7d64f410b91e [
file
] [
log
] [
blame
]
-- 2) fails and throws error: 'ERROR: could not determine polymorphic type
-- because input has type "unknown"'
-- decode in GPDB support this type
select
decode
(
'2012-01-01'
,
'2012-01-01'
,
23
,
'2012-01-02'
,
24
);