diff --git a/presto-iceberg/src/test/java/com/facebook/presto/iceberg/procedure/TestSetTablePropertyProcedure.java b/presto-iceberg/src/test/java/com/facebook/presto/iceberg/procedure/TestSetTablePropertyProcedure.java index a6ff137f8bc3..ef809bbcf725 100644 --- a/presto-iceberg/src/test/java/com/facebook/presto/iceberg/procedure/TestSetTablePropertyProcedure.java +++ b/presto-iceberg/src/test/java/com/facebook/presto/iceberg/procedure/TestSetTablePropertyProcedure.java @@ -71,14 +71,14 @@ public void testSetTablePropertyProcedurePositionalArgs() Table table = loadTable(tableName); table.refresh(); - assertEquals(table.properties().size(), 7); + assertEquals(table.properties().size(), 8); assertEquals(table.properties().get(propertyKey), null); assertUpdate(format("CALL system.set_table_property('%s', '%s', '%s', '%s')", TEST_SCHEMA, tableName, propertyKey, propertyValue)); table.refresh(); // now the table property read.split.target-size should have new value - assertEquals(table.properties().size(), 8); + assertEquals(table.properties().size(), 9); assertEquals(table.properties().get(propertyKey), propertyValue); } finally { @@ -99,7 +99,7 @@ public void testSetTablePropertyProcedureNamedArgs() Table table = loadTable(tableName); table.refresh(); - assertEquals(table.properties().size(), 7); + assertEquals(table.properties().size(), 8); assertEquals(table.properties().get(propertyKey), null); assertUpdate(format("CALL system.set_table_property(schema => '%s', key => '%s', value => '%s', table_name => '%s')", @@ -107,7 +107,7 @@ public void testSetTablePropertyProcedureNamedArgs() table.refresh(); // now the table property read.split.target-size should have new value - assertEquals(table.properties().size(), 8); + assertEquals(table.properties().size(), 9); assertEquals(table.properties().get(propertyKey), propertyValue); } finally { @@ -129,14 +129,14 @@ public void testSetTablePropertyProcedureUpdateExisting() Table table = loadTable(tableName); table.refresh(); - assertEquals(table.properties().size(), 7); + assertEquals(table.properties().size(), 8); assertEquals(table.properties().get(propertyKey), "4"); assertUpdate(format("CALL system.set_table_property('%s', '%s', '%s', '%s')", TEST_SCHEMA, tableName, propertyKey, propertyValue)); table.refresh(); // now the table property commit.retry.num-retries should have new value - assertEquals(table.properties().size(), 7); + assertEquals(table.properties().size(), 8); assertEquals(table.properties().get(propertyKey), propertyValue); } finally {