Zou created FLINK-19796:
---------------------------
Summary: 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
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}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)