[
https://issues.apache.org/jira/browse/FLINK-19796?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Zou updated FLINK-19796:
------------------------
Description:
The result is wrong when use constant decimal array with different precisions.
Here is an example:
{code:sql}
create table print_sink(
data array<decimal(3,2)>
) with (
'connector' = 'print'
);
insert into print_sink
select array[0.12, 0.5, 0.99];
{code}
The result will be:
{code:java}
+I([0.12, 0.05, 0.99])
{code}
was:
The result is wrong when use constant decimal array with different precisions.
Here is an example:
{code:sql}
create table print_sink(
data array<decimal(3,2)>
) with (
'connector' = 'print'
);
insert into print_sink
select array[0.12, 0.5, 0.99];
{code}
The result will be:
{code:java}
+I([0.12, 0.05])
{code}
> Error results when use constant decimal array
> ---------------------------------------------
>
> Key: FLINK-19796
> URL: https://issues.apache.org/jira/browse/FLINK-19796
> Project: Flink
> Issue Type: Bug
> Components: Table SQL / Runtime
> Reporter: Zou
> Priority: Major
>
> The result is wrong when use constant decimal array with different precisions.
> Here is an example:
> {code:sql}
> create table print_sink(
> data array<decimal(3,2)>
> ) with (
> 'connector' = 'print'
> );
> insert into print_sink
> select array[0.12, 0.5, 0.99];
> {code}
> The result will be:
> {code:java}
> +I([0.12, 0.05, 0.99])
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)