-- create test table in iceberg
create table all_defaults_partitioned
with (
partitioning = array['month(shipdate)']
)
as select * from tpch.sf1000.lineitem
-- first session
update all_defaults_partitioned
set orderkey = 654
where shipdate = date '1995-01-01'
-- second session
update all_defaults_partitioned
set orderkey = 765
where shipdate = date '1996-12-01'
Additional context and related issues
Release notes
( ) This is not user-visible or is docs only, and no release notes are required.
( ) Release notes are required. Please propose a release note for me.
(x) Release notes are required, with the following suggested text:
## Iceberg
* Add support for concurrent write on Iceberg transformed column
Description
Add concurrent write to scenarios like:
Additional context and related issues
Release notes
( ) This is not user-visible or is docs only, and no release notes are required. ( ) Release notes are required. Please propose a release note for me. (x) Release notes are required, with the following suggested text: