This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 63ffd40364 [python] Remove duplicate BLOB validation during table
creation (#9704)
63ffd40364 is described below
commit 63ffd403648e1cf9848e32bb29a398c1b3b16ab1
Author: zhigang <[email protected]>
AuthorDate: Wed Sep 9 20:03:33 2026 +0800
[python] Remove duplicate BLOB validation during table creation (#9704)
---
paimon-python/pypaimon/schema/schema_manager.py | 6 ------
1 file changed, 6 deletions(-)
diff --git a/paimon-python/pypaimon/schema/schema_manager.py
b/paimon-python/pypaimon/schema/schema_manager.py
index 4cb5261efd..950a2e308b 100644
--- a/paimon-python/pypaimon/schema/schema_manager.py
+++ b/paimon-python/pypaimon/schema/schema_manager.py
@@ -661,12 +661,6 @@ class SchemaManager:
comment=schema.comment,
)
- _validate_blob_fields(
- schema.fields,
- schema.options,
- schema.primary_keys,
- schema.partition_keys,
- )
table_schema = TableSchema.from_schema(schema_id=0, schema=schema)
success = self.commit(table_schema)
if success: