Make sure ORDER BY clauses are formatted correctly
This commit is contained in:
parent
444d7858b8
commit
449ce9a4a8
1 changed files with 1 additions and 1 deletions
|
@ -498,7 +498,7 @@ func (this Orders) String() string {
|
||||||
func (this Order) String() string {
|
func (this Order) String() string {
|
||||||
return print("%v %v",
|
return print("%v %v",
|
||||||
this.Expr,
|
this.Expr,
|
||||||
this.Dir,
|
maybe(this.Dir, "ASC", "DESC"),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue