Skip to content

Commit a6b45b6

Browse files
authored
GH-49081: [C++][Parquet][FOLLOWUP] Correct variant's extension name (#49211)
### Rationale for this change Previous PR moved one file, modified the CMakeLists but didn't modify the meson file. Fix meson build failure. ### What changes are included in this PR? Modified the meson configuration files. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * GitHub Issue: #49081 Authored-by: Zehua Zou <zehuazou2000@gmail.com> Signed-off-by: Gang Wu <ustcwg@gmail.com>
1 parent f32f8ac commit a6b45b6

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

cpp/src/arrow/extension/meson.build

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,12 @@ exc = executable(
3232
test('arrow-canonical-extensions-test', exc)
3333

3434
install_headers(
35-
['bool8.h', 'fixed_shape_tensor.h', 'json.h', 'opaque.h', 'uuid.h'],
35+
[
36+
'bool8.h',
37+
'fixed_shape_tensor.h',
38+
'json.h',
39+
'opaque.h',
40+
'parquet_variant.h',
41+
'uuid.h',
42+
],
3643
)

cpp/src/arrow/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ arrow_components = {
141141
'extension_type.cc',
142142
'extension/bool8.cc',
143143
'extension/json.cc',
144+
'extension/parquet_variant.cc',
144145
'extension/uuid.cc',
145146
'pretty_print.cc',
146147
'record_batch.cc',

cpp/src/parquet/meson.build

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ parquet_srcs = files(
2323
'arrow/reader_internal.cc',
2424
'arrow/schema.cc',
2525
'arrow/schema_internal.cc',
26-
'arrow/variant_internal.cc',
2726
'arrow/writer.cc',
2827
'bloom_filter.cc',
2928
'bloom_filter_reader.cc',

0 commit comments

Comments
 (0)