aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/expr/cast_decimal_implicit_fail_2.sql
blob: 9da5dd8c4e54b7ec7f7b51adb6837bbb0602cba2 (plain) (blame)
1
2
3
4
5
6
7
8
/* postgres can not */
/* custom error: Error: Implicit decimal cast would narrow the range */
$lambda = ($small_dec) -> { return $small_dec; };

$func_3_1 = Callable(Callable<(Decimal(3, 1))->Decimal(3, 1)>, $lambda);
$dec_5_1 = Decimal("22.2", 5, 1);

SELECT $func_3_1($dec_5_1) AS try_downcast;