Skip to content

Commit

Permalink
Don't make Column sealed (allow extension)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoerdmulder committed Sep 23, 2024
1 parent da859f8 commit 8540f03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package com.crobox.clickhouse.dsl
import com.crobox.clickhouse.dsl.marshalling.QueryValue
import com.crobox.clickhouse.dsl.schemabuilder.{ColumnType, DefaultValue, TTL}

sealed trait Column {
trait Column {
val name: String
lazy val quoted: String = ClickhouseStatement.quoteIdentifier(name)
}
Expand Down

0 comments on commit 8540f03

Please sign in to comment.