Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
caican committed Oct 11, 2024
1 parent 32b9ae5 commit 27005cf
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,15 @@ public class PaimonTablePropertiesMetadata extends BasePropertiesMetadata {
ImmutableList.of(
stringReservedPropertyEntry(COMMENT, "The table comment", true),
stringReservedPropertyEntry(OWNER, "The table owner", false),
stringImmutablePropertyEntry(
BUCKET_KEY, "The table bucket key", false, null, false, false),
stringReservedPropertyEntry(BUCKET_KEY, "The table bucket key", false),
stringImmutablePropertyEntry(
MERGE_ENGINE, "The table merge engine", false, null, false, false),
stringImmutablePropertyEntry(
SEQUENCE_FIELD, "The table sequence field", false, null, false, false),
stringImmutablePropertyEntry(
ROWKIND_FIELD, "The table rowkind field", false, null, false, false),
stringImmutablePropertyEntry(
PRIMARY_KEY, "The table primary key", false, null, false, false),
stringImmutablePropertyEntry(
PARTITION, "The table partition", false, null, false, false));
stringReservedPropertyEntry(PRIMARY_KEY, "The table primary key", false),
stringReservedPropertyEntry(PARTITION, "The table partition", false));
PROPERTIES_METADATA = Maps.uniqueIndex(propertyEntries, PropertyEntry::getName);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,33 +382,41 @@ void testTableProperty() {
try (PaimonCatalogOperations ops = new PaimonCatalogOperations()) {
ops.initialize(
initBackendCatalogProperties(), entity.toCatalogInfo(), PAIMON_PROPERTIES_METADATA);
HashMap<String, String> properties1 =
HashMap<String, String> reservedProps =
new HashMap<String, String>() {
{
put(PaimonTablePropertiesMetadata.COMMENT, "test");
put(PaimonTablePropertiesMetadata.OWNER, "test");
put(PaimonTablePropertiesMetadata.BUCKET_KEY, "test");
put(PaimonTablePropertiesMetadata.PRIMARY_KEY, "test");
put(PaimonTablePropertiesMetadata.PARTITION, "test");
}
};
Assertions.assertThrows(
IllegalArgumentException.class,
() ->
PropertiesMetadataHelpers.validatePropertyForCreate(
paimonCatalog.tablePropertiesMetadata(), properties1));
paimonCatalog.tablePropertiesMetadata(), reservedProps));
Assertions.assertThrows(
IllegalArgumentException.class,
() ->
PropertiesMetadataHelpers.validatePropertyForAlter(
paimonCatalog.tablePropertiesMetadata(), properties1, Collections.emptyMap()));
paimonCatalog.tablePropertiesMetadata(), reservedProps, Collections.emptyMap()));
Assertions.assertThrows(
IllegalArgumentException.class,
() ->
PropertiesMetadataHelpers.validatePropertyForAlter(
paimonCatalog.tablePropertiesMetadata(), Collections.emptyMap(), properties1));
paimonCatalog.tablePropertiesMetadata(), Collections.emptyMap(), reservedProps));

Map<String, String> map = Maps.newHashMap(getStringImmutableProperties());
map.put("key1", "val1");
map.put("key2", "val2");
for (Map.Entry<String, String> entry : map.entrySet()) {
Map<String, String> immutableProps =
new HashMap<String, String>() {
{
put(PaimonTablePropertiesMetadata.MERGE_ENGINE, "test");
put(PaimonTablePropertiesMetadata.SEQUENCE_FIELD, "test");
put(PaimonTablePropertiesMetadata.ROWKIND_FIELD, "test");
}
};
for (Map.Entry<String, String> entry : immutableProps.entrySet()) {
HashMap<String, String> properties =
new HashMap<String, String>() {
{
Expand All @@ -418,11 +426,13 @@ void testTableProperty() {
PropertiesMetadata metadata = paimonCatalog.tablePropertiesMetadata();
Assertions.assertDoesNotThrow(
() -> PropertiesMetadataHelpers.validatePropertyForCreate(metadata, properties));
Assertions.assertDoesNotThrow(
Assertions.assertThrows(
IllegalArgumentException.class,
() ->
PropertiesMetadataHelpers.validatePropertyForAlter(
metadata, properties, Collections.emptyMap()));
Assertions.assertDoesNotThrow(
Assertions.assertThrows(
IllegalArgumentException.class,
() ->
PropertiesMetadataHelpers.validatePropertyForAlter(
metadata, Collections.emptyMap(), properties));
Expand Down Expand Up @@ -631,19 +641,4 @@ private static Column[] createColumns() {
"col3", Types.StringType.get(), "col_3_comment", false, false, DEFAULT_VALUE_NOT_SET);
return new Column[] {col1, col2, col3};
}

private static Map<String, String> getStringImmutableProperties() {
Map<String, String> map = Maps.newHashMap();
map.put(PaimonTablePropertiesMetadata.BUCKET_KEY, "test");
map.put(PaimonTablePropertiesMetadata.MERGE_ENGINE, "test");
map.put(PaimonTablePropertiesMetadata.SEQUENCE_FIELD, "test");
map.put(PaimonTablePropertiesMetadata.ROWKIND_FIELD, "test");
map.put(PaimonTablePropertiesMetadata.PRIMARY_KEY, "test");
map.put(PaimonTablePropertiesMetadata.PARTITION, "test");

map = Maps.newHashMap();
map.put("key1", "val1");
map.put("key2", "val2");
return map;
}
}

0 comments on commit 27005cf

Please sign in to comment.