-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Additional Unit Tests for Parquet VARIANT Field Extraction #23036
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rapids-bot
merged 56 commits into
NVIDIA:main
from
abigalekim:ak/field-extraction-tests
Jul 28, 2026
Merged
Changes from all commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
80a89aa
test draft
693c014
Merge branch 'main' into ak/field-extraction-tests
abigalekim 7032897
Merge branch 'main' into ak/field-extraction-tests
abigalekim d4c5d2d
Merge branch 'main' of github.com:abigalekim/cudf into ak/field-extra…
abigalekim e7d4bca
stuff
abigalekim 614b290
reviews
abigalekim f3459e5
Merge branch 'main' into ak/field-extraction-tests
abigalekim 9282a81
Merge branch 'ak/field-extraction-tests' of github.com:abigalekim/cud…
abigalekim 097347f
addressing reviews
abigalekim fc49abe
addressing reviews
abigalekim 556544b
Merge branch 'main' into ak/field-extraction-tests
abigalekim 2df4645
Merge branch 'main' into ak/field-extraction-tests
abigalekim 7413eb2
review
abigalekim 3bb935f
Merge branch 'ak/field-extraction-tests' of github.com:abigalekim/cud…
abigalekim f20ea45
new file
abigalekim fd1d435
Merge branch 'main' into ak/field-extraction-tests
abigalekim 0dd37a4
Update cpp/include/cudf/io/experimental/variant_spec.hpp
abigalekim ca74bed
Merge branch 'main' into ak/field-extraction-tests
abigalekim 07ca0e8
Merge branch 'main' into ak/field-extraction-tests
abigalekim 40d9673
stuff
abigalekim 1dae299
merge
abigalekim 08b4f31
Merge branch 'main' into ak/field-extraction-tests
abigalekim 42d1f10
coderabbit
abigalekim 88c66b8
git Merge branch 'ak/field-extraction-tests' of github.com:abigalekim…
abigalekim 3ff7b05
Update cpp/include/cudf/io/experimental/variant_spec.hpp
abigalekim 39bdf07
Update cpp/include/cudf/io/experimental/variant_spec.hpp
abigalekim b49dbd9
Merge branch 'main' into ak/field-extraction-tests
abigalekim 469509e
clang format
abigalekim 743b4c7
hopefully passes CI
abigalekim 26b5ff6
Merge branch 'main' into ak/field-extraction-tests
abigalekim 2fe74fa
Merge branch 'main' into ak/field-extraction-tests
abigalekim 70cf457
Merge branch 'main' into ak/field-extraction-tests
abigalekim 57321f1
Update cpp/tests/io/experimental/variant_extract_test.cpp
abigalekim d09b0ad
Update cpp/tests/io/experimental/variant_extract_test.cpp
abigalekim 69ed9d2
Merge branch 'main' into ak/field-extraction-tests
abigalekim b417378
Merge branch 'main' into ak/field-extraction-tests
abigalekim 7f1ad8d
Merge branch 'main' into ak/field-extraction-tests
abigalekim c93b024
clang format
abigalekim 0882f0a
Merge branch 'main' into ak/field-extraction-tests
abigalekim 10dce74
Merge branch 'main' into ak/field-extraction-tests
abigalekim 148a04b
Merge branch 'main' into ak/field-extraction-tests
abigalekim 1370221
Merge branch 'main' into ak/field-extraction-tests
abigalekim 15c5563
Merge branch 'main' into ak/field-extraction-tests
abigalekim 526bcdc
Merge branch 'main' into ak/field-extraction-tests
abigalekim 9c11709
Merge branch 'main' into ak/field-extraction-tests
abigalekim c4e865a
Merge branch 'main' into ak/field-extraction-tests
abigalekim f0c2ce1
Merge branch 'main' into ak/field-extraction-tests
abigalekim 01e5942
Merge branch 'main' into ak/field-extraction-tests
abigalekim 48536d1
Update variant enum references missed in merge from main
vuule 8ed7f3b
Merge branch 'main' into ak/field-extraction-tests
vuule c6a5180
Merge branch 'main' into ak/field-extraction-tests
abigalekim d6daa7e
Merge branch 'main' into ak/field-extraction-tests
abigalekim bf553c2
test
abigalekim 8d19aaf
Merge branch 'ak/field-extraction-tests' of github.com:abigalekim/cud…
abigalekim e41f893
reflect float and bool support
abigalekim 03194b0
Merge branch 'main' into ak/field-extraction-tests
abigalekim File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| /* | ||
| * SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
|
|
||
| #pragma once | ||
|
|
||
| #include <cstdint> | ||
|
|
||
| namespace cudf::io::parquet::experimental { | ||
|
|
||
| /** | ||
| * @brief Low 2 bits of a VARIANT value's metadata byte: the basic type. | ||
| */ | ||
| enum class variant_basic_type : uint8_t { | ||
| PRIMITIVE = 0, | ||
| SHORT_STRING = 1, | ||
| OBJECT = 2, | ||
| ARRAY = 3, | ||
| }; | ||
|
|
||
| /** | ||
| * @brief Physical type ID carried in the value_header of a primitive VARIANT value. | ||
| */ | ||
| enum class variant_primitive_type : uint8_t { | ||
| NULLVAL = 0, | ||
| BOOLEAN_TRUE = 1, | ||
| BOOLEAN_FALSE = 2, | ||
| INT8 = 3, | ||
| INT16 = 4, | ||
| INT32 = 5, | ||
| INT64 = 6, | ||
| FLOAT64 = 7, | ||
| DECIMAL4 = 8, | ||
| DECIMAL8 = 9, | ||
| DECIMAL16 = 10, | ||
| DATE = 11, | ||
| TIMESTAMP_MICROS = 12, | ||
| TIMESTAMP_NTZ_MICROS = 13, | ||
| FLOAT32 = 14, | ||
| BINARY = 15, | ||
| LONG_STRING = 16, | ||
| TIME_NTZ_MICROS = 17, | ||
| TIMESTAMP_NANOS = 18, | ||
| TIMESTAMP_NTZ_NANOS = 19, | ||
| UUID = 20, | ||
| }; | ||
|
|
||
| } // namespace cudf::io::parquet::experimental | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.