adutra commented on PR #1772:
URL: https://github.com/apache/polaris/pull/1772#issuecomment-2935067858
These commands also work:
```
spark-sql ()> show create table test.history;
CREATE TABLE polaris.test.history (
c1 INT)
USING iceberg
LOCATION 'file:///var/tmp/quickstart_catalog/test/history'
TBLPROPERTIES (
'current-snapshot-id' = 'none',
'format' = 'iceberg/parquet',
'format-version' = '2',
'write.parquet.compression-codec' = 'zstd')
Time taken: 5.194 seconds, Fetched 1 row(s)
spark-sql ()> show create table test.history.history;
CREATE TABLE polaris.test.history.history (
made_current_at TIMESTAMP NOT NULL,
snapshot_id BIGINT NOT NULL,
parent_id BIGINT,
is_current_ancestor BOOLEAN NOT NULL)
USING iceberg
LOCATION 'file:///var/tmp/quickstart_catalog/test/history'
TBLPROPERTIES (
'current-snapshot-id' = 'none',
'format' = 'iceberg/parquet')
Time taken: 29.912 seconds, Fetched 1 row(s)
spark-sql ()>
```
--
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]