Skip to content

Commit

Permalink
Fix multiple gdb-group overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
longl committed Jun 1, 2022
1 parent ef04c8a commit 60c0045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/gdb/gdb_model_order_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ func (m *Model) Group(groupBy ...string) *Model {
if model.groupBy != "" {
model.groupBy += ","
}
model.groupBy = model.db.GetCore().QuoteString(strings.Join(groupBy, ","))
model.groupBy += model.db.GetCore().QuoteString(strings.Join(groupBy, ","))
return model
}

0 comments on commit 60c0045

Please sign in to comment.