-
Notifications
You must be signed in to change notification settings - Fork 40
Fix handling of "null" values for non-TEXT columns in CSV imports #3160
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
Conversation
Summary of ChangesHello @inv-jishnu, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request standardizes the handling of "null" values across different data import formats. Previously, CSV imports treated the string "null" as a literal for non-TEXT columns, causing inconsistencies and potential failures compared to JSON and JSONLines. The changes modify the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request correctly handles string "null" values from CSV imports as null for non-TEXT columns, aligning behavior with other file formats. The implementation is sound, and new unit tests validate the change. My main feedback is to make the "null" string check case-insensitive (e.g., to handle "NULL" and "Null") for better robustness, and to update the corresponding unit tests to cover these cases. This will make the feature more user-friendly.
data-loader/core/src/main/java/com/scalar/db/dataloader/core/util/ColumnUtils.java
Outdated
Show resolved
Hide resolved
data-loader/core/src/test/java/com/scalar/db/dataloader/core/util/ColumnUtilsTest.java
Show resolved
Hide resolved
ypeckstadt
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thank you.
brfrn169
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you!
komamitsu
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! 👍
feeblefakie
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you!
Torch3333
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thank you!
thongdk8
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you!
Description
This PR updates the column creation logic in createColumnFromValue() in the ColumnUtils class to correctly interpret the string "null" as an actual null value for non-TEXT column types.
Previously, when a CSV file contained null as a value, it was parsed as the literal string "null", causing the initial null check (value != null) to behave differently than when the same value was provided via JSON or JSON Lines. As a result, CSV-based imports failed, while JSON and JSON Lines imports handled null values correctly.
This fix ensures consistent behavior across all file types by converting "null" to a real null value for all column types except TEXT when provided via a CSV file.
Related issues and/or PRs
NA
Changes made
Updated createColumnFromValue() method in ColumnUtils class and added a pre-check:
Added Unit Tests in ColumnUtilsTest
Checklist
Additional notes (optional)
NA
Release notes
Fixed handling of "null" values for non-TEXT columns in CSV imports