in paimon-trino-common/src/main/java/org/apache/paimon/trino/TrinoTableOptionUtils.java [83:93]
private static boolean shouldSkip(String fieldName) {
switch (fieldName) {
case "PRIMARY_KEY":
case "PARTITION":
case "FILE_COMPRESSION_PER_LEVEL":
case "STREAMING_COMPACT":
return true;
default:
return false;
}
}