Skip to content

Commit

Permalink
scalastyle
Browse files Browse the repository at this point in the history
  • Loading branch information
ericm-db committed Nov 25, 2024
1 parent 5d5cb65 commit 8d860ee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ object RocksDBStateStoreProvider {
valueSchema: StructType): RocksDBDataEncoder = {

stateStoreEncoding match {
case StateStoreEncoding.Avro.toString =>
case "avro" =>
RocksDBStateStoreProvider.dataEncoderCache.get(
encoderCacheKey,
new java.util.concurrent.Callable[AvroStateEncoder] {
Expand All @@ -656,7 +656,7 @@ object RocksDBStateStoreProvider {
}
}
)
case StateStoreEncoding.UnsafeRow.toString =>
case "unsaferow" =>
RocksDBStateStoreProvider.dataEncoderCache.get(
encoderCacheKey,
new java.util.concurrent.Callable[UnsafeRowDataEncoder] {
Expand Down

0 comments on commit 8d860ee

Please sign in to comment.