Skip to content
Prev Previous commit
Next Next commit
removing println, test passes
  • Loading branch information
ericm-db committed Jul 16, 2024
commit bbb7091778ed2cb813a5963015d50f16d1af6e94
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ class IncrementalExecution(
*/
private val STATE_SCHEMA_DEFAULT_VERSION: Int = 2

/**
* This value dictates which schema format version the state schema should be written in
* for all operators other than TransformWithState.
*/
private val STATE_SCHEMA_DEFAULT_VERSION: Int = 2

/**
* See [SPARK-18339]
* Walk the optimized logical plan and replace CurrentBatchTimestamp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,6 @@ class TransformWithStateSuite extends StateStoreMetricsTest

val columnFamilySchemas = fetchColumnFamilySchemas(chkptDir.getCanonicalPath, 0)
assert(columnFamilySchemas.length == 1)

val expected = ColumnFamilySchemaV1(
"countState",
new StructType().add("key",
Expand Down