Skip to content

Commit 6d50d89

Browse files
committed
feat: add row-based immutable data structure
1 parent 3911af2 commit 6d50d89

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

src/iceberg/meson.build

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ iceberg_sources = files(
5757
'name_mapping.cc',
5858
'partition_field.cc',
5959
'partition_spec.cc',
60+
'row/arrow_array_wrapper.cc',
61+
'row/manifest_wrapper.cc',
6062
'schema.cc',
6163
'schema_field.cc',
6264
'schema_internal.cc',
@@ -175,6 +177,7 @@ install_headers(
175177

176178
subdir('catalog')
177179
subdir('expression')
180+
subdir('row')
178181
subdir('util')
179182

180183
if get_option('tests').enabled()

src/iceberg/row/meson.build

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
install_headers(
19+
['arrow_array_wrapper.h', 'manifest_wrapper.h', 'struct_like.h'],
20+
subdir: 'iceberg/row',
21+
)

0 commit comments

Comments
 (0)