Manish Maheshwari created IMPALA-12344:
------------------------------------------
Summary: Support varchar(x) for Iceberg Tables
Key: IMPALA-12344
URL: https://issues.apache.org/jira/browse/IMPALA-12344
Project: IMPALA
Issue Type: Improvement
Components: Backend, Frontend
Affects Versions: Impala 4.1.2
Reporter: Manish Maheshwari
Support varchar(x) for Iceberg Tables. Without it queries on tables with
columns that have varchar(x) datatype need to be manually casted.
{code:java}
create external table test_varchar ( a int, b varchar(10) ) stored as
parquet;
create table test_varchar_ice STORED BY ICEBERG AS SELECT a, b from
test_varchar;
create table test_varchar_parq2 STORED as parquet AS SELECT a, cast (b as
varchar) from test_varchar;
create table test_varchar_parq2 STORED as parquet AS SELECT a, b from
test_varchar;
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)