Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: snowplow/iglu
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 30895719282a1456d31c7ffe5cc86a1cea47e891
Choose a base ref
..
head repository: snowplow/iglu
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7479c569e09277990b11da4ddd21f531d9a61a1c
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 0-common/schema-ddl/src/main/scala/com.snowplowanalytics/iglu.schemaddl/redshift/Column.scala
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ private[redshift] case class Column[T <: RedShiftDdl](
columnName: String,
dataType: DataType[Ddl],
columnAttributes: Set[ColumnAttribute[T]] = Set.empty[ColumnAttribute[T]],
columnConstraints: Set[ColumnConstraint[RedShiftDdl]] = Set.empty[ColumnConstraint[RedShiftDdl]]
columnConstraints: Set[ColumnConstraint[T]] = Set.empty[ColumnConstraint[T]]
) extends RedShiftDdl {

/**