0
如何在Impala中插入Infinity和NaN。同樣的測試適用於Hive,但在Impala中發生錯誤。如何在Impala中插入無窮大表
> create table z2 (x double);
> insert into z2 values (1),("NaN"),("Infinity"),("-Infinity");
Query: insert into z1 values (1),("NaN"),("Infinity"),("-Infinity")
ERROR: AnalysisException: Incompatible return types 'TINYINT' and 'STRING' of
exprs '1' and ''NaN''.
誰能告訴我如何解決這個Impala。