Skip to content

Commit

Permalink
Fixed lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Xuyuanp authored and doug-martin committed Aug 24, 2019
1 parent 7adbd83 commit 557ec17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exp/window.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type sqlWindowExpression struct {
orderCols ColumnListExpression
}

func NewWindowExpression(window string, parent string, partitionCols, orderCols ColumnListExpression) WindowExpression {
func NewWindowExpression(window, parent string, partitionCols, orderCols ColumnListExpression) WindowExpression {
if partitionCols == nil {
partitionCols = NewColumnListExpression()
}
Expand Down

0 comments on commit 557ec17

Please sign in to comment.