Skip to content

Commit

Permalink
schema: clarifying failure message when trying to generate MV columns
Browse files Browse the repository at this point in the history
  • Loading branch information
Henrik Johansson committed Jun 17, 2019
1 parent 9c981c5 commit a2332f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ func GenSchema(sc SchemaConfig) *Schema {
for i := 0; i < numMvs; i++ {
col, err := validMVColumn()
if err != nil {
fmt.Println(err)
fmt.Printf("unable to generate valid columns for materialized view, error=%s", err)
continue
}

Expand Down

0 comments on commit a2332f5

Please sign in to comment.