summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/struct_tuple_cast.yql
blob: fb50b44562abb7c951499f0337c21a1af6631df6 (plain) (blame)
1
2
3
4
5
6
7
8
/* dq can not */
/* dqfile can not */

$s = <|foo:1p|>;
$t = (1p,);

select cast($s as Struct<a:PgText,b:PgInt4,c:_PgText,foo:PgInt4>);
select cast($t as Tuple<PgInt4,PgText,_PgText>);