Add tests for example function Arrow serialization#23
Merged
rustyconover merged 3 commits intoJan 6, 2026
Merged
Conversation
Add TestExampleFunctionsSerialization class to verify that all example functions can have their argument specs extracted and serialized: - test_scalar_functions: DoubleColumn, AddColumns, UpperCase - test_table_functions: Sequence, Range, ConstantTable - test_table_in_out_functions: Echo, BufferInput, RepeatInputs, SumAllColumns - test_range_function_step_uses_int32: Verifies explicit arrow_type - test_double_column_uses_explicit_utf8: Verifies explicit arrow_type Each test verifies: 1. Specs are extracted successfully 2. All specs have non-null arrow_type 3. Schema roundtrip works 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Base automatically changed from
test/arg-arrow-type
to
feature/example-arrow-type
January 5, 2026 21:14
…ation Resolve conflict in tests/test_argument_spec.py by keeping both: - TestExampleFunctionsSerialization (from this branch) - TestArgumentSpecRepr (from feature/example-arrow-type) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Adds
TestExampleFunctionsSerializationclass to verify all example functionscan have their argument specs extracted and serialized:
test_scalar_functions: DoubleColumn, AddColumns, UpperCasetest_table_functions: Sequence, Range, ConstantTabletest_table_in_out_functions: Echo, BufferInput, RepeatInputs, SumAllColumnstest_range_function_step_uses_int32: Verifies explicit arrow_typetest_double_column_uses_explicit_utf8: Verifies explicit arrow_typeDepends on PR #22 (Arg.arrow_type tests).
Test plan
🤖 Generated with Claude Code