juntaozhang opened a new issue, #7183: URL: https://github.com/apache/paimon/issues/7183
### Search before asking - [x] I searched in the [issues](https://github.com/apache/paimon/issues) and found nothing similar. ### Paimon version master ### Compute Engine Spark ### Minimal reproduce step ``` CREATE TABLE T5 (id INT, value STRING, pt STRING) TBLPROPERTIES ( 'primary-key'='id', 'bucket'='-2', 'postpone.batch-write-fixed-bucket' = 'false', 'postpone.default-bucket-num' = '1' ) PARTITIONED BY (pt); INSERT INTO T5 VALUES (1, 'a', 'p1'), (2, 'b', 'p1'); CALL sys.rescale(table => 'T5', bucket_num => 2, partitions => 'pt="p1"'); ``` ### What doesn't meet your expectations? `SELECT count(*) FROM T5` should be 0 ### Anything else? _No response_ ### Are you willing to submit a PR? - [x] I'm willing to submit a PR! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
