rdblue commented on pull request #2496:
URL: https://github.com/apache/iceberg/pull/2496#issuecomment-1036525190
From the discussion with @RussellSpitzer, I think some of those statements
are in conflict with the SQL spec. Here's Postgres behavior (verified by
SQLFiddle):
```sql
create table default_test (id int);
insert into default_test values (1), (2), (3);
alter table default_test add column data int default 0;
alter table default_test alter column data set default 1000;
```
```sql
select * from default_test;
```
```
id | data
-- | --
1 | 0
2 | 0
3 | 0
```
--
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]