Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikeyann authored Sep 10, 2024
1 parent e7fce07 commit 252c38b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions java/src/main/native/src/TableJni.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1649,7 +1649,7 @@ Java_ai_rapids_cudf_Table_readAndInferJSONFromDataSource(JNIEnv* env,
.strict_validation(strict_validation)
.keep_quotes(keep_quotes);
if (strict_validation) {
opt.numeric_leading_zeros(allow_leading_zeros)
opts.numeric_leading_zeros(allow_leading_zeros)
.nonnumeric_numbers(allow_nonnumeric_numbers)
.unquoted_control_chars(allow_unquoted_control);
}
Expand Down Expand Up @@ -1702,7 +1702,7 @@ Java_ai_rapids_cudf_Table_readAndInferJSON(JNIEnv* env,
.mixed_types_as_string(mixed_types_as_string)
.keep_quotes(keep_quotes);
if (strict_validation) {
opt.numeric_leading_zeros(allow_leading_zeros)
opts.numeric_leading_zeros(allow_leading_zeros)
.nonnumeric_numbers(allow_nonnumeric_numbers)
.unquoted_control_chars(allow_unquoted_control);
}
Expand Down Expand Up @@ -1851,7 +1851,7 @@ Java_ai_rapids_cudf_Table_readJSONFromDataSource(JNIEnv* env,
.strict_validation(strict_validation)
.keep_quotes(keep_quotes);
if (strict_validation) {
opt.numeric_leading_zeros(allow_leading_zeros)
opts.numeric_leading_zeros(allow_leading_zeros)
.nonnumeric_numbers(allow_nonnumeric_numbers)
.unquoted_control_chars(allow_unquoted_control);
}
Expand Down Expand Up @@ -1960,7 +1960,7 @@ JNIEXPORT jlong JNICALL Java_ai_rapids_cudf_Table_readJSON(JNIEnv* env,
.strict_validation(strict_validation)
.keep_quotes(keep_quotes);
if (strict_validation) {
opt.numeric_leading_zeros(allow_leading_zeros)
opts.numeric_leading_zeros(allow_leading_zeros)
.nonnumeric_numbers(allow_nonnumeric_numbers)
.unquoted_control_chars(allow_unquoted_control);
}
Expand Down

0 comments on commit 252c38b

Please sign in to comment.