Skip to content

Commit

Permalink
Streamline parquet-avro with avro API
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Feb 5, 2024
1 parent 9c11122 commit 6f7f42d
Show file tree
Hide file tree
Showing 17 changed files with 1,130 additions and 1,254 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -1033,8 +1033,8 @@ lazy val `scio-parquet` = project
.in(file("scio-parquet"))
.dependsOn(
`scio-core`,
`scio-avro` % "provided",
`scio-tensorflow` % "provided",
`scio-avro` % Test,
`scio-test` % "test->test"
)
.settings(commonSettings)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import scala.util.{Failure, Success}
private[coders] object VoidCoder extends AtomicCoder[Void] {
override def encode(value: Void, outStream: OutputStream): Unit = ()

override def decode(inStream: InputStream): Void = ???
override def decode(inStream: InputStream): Void = null

override def structuralValue(value: Void): AnyRef = AnyRef
}
Expand Down
Loading

0 comments on commit 6f7f42d

Please sign in to comment.