Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchengchenghh committed May 22, 2024
1 parent ceb95fe commit acde1ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cpp/src/arrow/dataset/file_csv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ Result<std::shared_ptr<FragmentScanOptions>> CsvFragmentScanOptions::from(
} else if (key == "strings_can_be_null") {
options->convert_options.strings_can_be_null = parseBool(value);
} else {
return Status::Invalid("Config " + it.first + "is not supported.");
return Status::Invalid("Config " + it.first + " is not supported.");
}
}
return options;
Expand Down
9 changes: 1 addition & 8 deletions java/dataset/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
<parquet.version>1.13.1</parquet.version>
<avro.version>1.11.3</avro.version>
<substrait.version>0.31.0</substrait.version>
<protobuf.version>3.25.3</protobuf.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -54,13 +53,7 @@
<groupId>io.substrait</groupId>
<artifactId>core</artifactId>
<version>${substrait.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobuf.version}</version>
<scope>compile</scope>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
Expand Down

0 comments on commit acde1ea

Please sign in to comment.