private static boolean shouldSkip()

in src/main/java/org/apache/paimon/trino/TrinoTableOptionUtils.java [82:92]


    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;
        }
    }