Skip to content

Commit

Permalink
Fix extra_properties hive test definition
Browse files Browse the repository at this point in the history
  • Loading branch information
ndrluis committed Jan 17, 2024
1 parent bcc1ed3 commit e9b9e2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8969,7 +8969,7 @@ public void testDuplicateExtraProperties()
"CREATE TABLE create_table_with_duplicate_extra_properties (c1 integer) WITH (extra_properties = MAP(ARRAY['extra.property', 'extra.property'], ARRAY['true', 'false']))",
"Invalid value for catalog 'hive' table property 'extra_properties': Cannot convert.*");
assertQueryFails(
"CREATE TABLE create_table_select_as_with_duplicate_extra_properties (c1 integer) WITH (extra_properties = MAP(ARRAY['extra.property', 'extra.property'], ARRAY['true', 'false']))",
"CREATE TABLE create_table_select_as_with_duplicate_extra_properties WITH (extra_properties = MAP(ARRAY['extra.property', 'extra.property'], ARRAY['true', 'false'])) AS SELECT 1 as c1",
"Invalid value for catalog 'hive' table property 'extra_properties': Cannot convert.*");
}

Expand Down

0 comments on commit e9b9e2c

Please sign in to comment.