Skip to content

Commit

Permalink
spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
ericm-db committed Jan 3, 2025
1 parent 3c6ed5a commit d11d649
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,17 @@ case class ReorderedLongs(

// Initial state with basic fields
case class BasicState(
id: Int,
name: String
id: Int,
name: String
)

// Evolved state with just primitive types
case class EvolvedState(
id: Int,
name: String,
count: Long, // Should default to 0
active: Boolean, // Should default to false
score: Double // Should default to 0.0
id: Int,
name: String,
count: Long, // Should default to 0
active: Boolean, // Should default to false
score: Double // Should default to 0.0
)

// Processor with initial schema
Expand Down

0 comments on commit d11d649

Please sign in to comment.