Skip to content
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

Point Deephaven to the new version of the deephaven-csv library #2098

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion extensions/csv/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ description 'CSV: Support to read and write engine tables from/to CSV'

dependencies {
api project(':engine-api')
api 'io.deephaven:deephaven-csv:0.1.0'
api 'io.deephaven:deephaven-csv:0.3.0-OR-WHATEVER'
api 'ch.randelshofer:fastdoubleparser:0.3.0'

implementation project(':engine-table'),
project(':engine-base')
Expand Down
2 changes: 2 additions & 0 deletions extensions/csv/src/main/java/io/deephaven/csv/CsvTools.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

package io.deephaven.csv;

import ch.randelshofer.fastdoubleparser.FastDoubleParserFromByteArray;
import io.deephaven.api.util.NameValidator;
import io.deephaven.base.Procedure;
import io.deephaven.chunk.ByteChunk;
Expand Down Expand Up @@ -106,6 +107,7 @@ public static Builder builder() {
return CsvSpecs.builder()
.headerLegalizer(ColumnNameLegalizer.INSTANCE)
.headerValidator(ColumnNameLegalizer.INSTANCE)
.customDoubleParser(FastDoubleParserFromByteArray::parseDouble)
.customTimeZoneParser(new DeephavenTimeZoneParser());
}

Expand Down