SGITLOGIN opened a new issue, #11952:
URL: https://github.com/apache/iceberg/issues/11952
### Apache Iceberg version
1.6.1
### Query engine
Spark
### Please describe the bug 🐞
### Spark configuration
spark.sql.catalog.spark_catalog =
org.apache.iceberg.spark.SparkSessionCatalog
spark.sql.catalog.spark_catalog.type = hive
spark.sql.extensions=org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions
### create table
CREATE TABLE iceberg_db.sample_oss_time_travel (
id string,
data string,
category string)
USING iceberg
PARTITIONED BY (category)
TBLPROPERTIES (
'write.format.default' = 'orc',
'write.metadata.delete-after-commit.enabled' = 'true',
'write.metadata.previous-versions-max' = '2',
'history.expire.max-snapshot-age-ms' = '600000',
'history.expire.min-snapshots-to-keep' = '2',
'commit.manifest.target-size-bytes' = '8388608',
'commit.manifest.min-count-to-merge' = '3',
'commit.manifest-merge.enabled' = 'true',
'write.wap.enabled' = 'true')
### SQL
ALTER TABLE iceberg_db.sample_oss_time_travel CREATE BRANCH branch1 AS OF
VERSION 2642313739747854004;
INSERT INTO iceberg_db.sample_oss_time_travel.branch1 VALUES ('5', 'e', 'a');
<img width="1110" alt="image"
src="https://github.com/user-attachments/assets/d2da7e09-4623-4a59-8750-e955cbf0e211"
/>
### Willingness to contribute
- [X] I can contribute a fix for this bug independently
- [X] I would be willing to contribute a fix for this bug with guidance from
the Iceberg community
- [X] I cannot contribute a fix for this bug at this time
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]