format code
This commit is contained in:
parent
63b7c53d7f
commit
8a698f79a7
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ abstract class Query<T, Where extends QueryWhere> extends QueryBase<T> {
|
|||
}
|
||||
if (_groupBy != null) b.write(' GROUP BY $_groupBy');
|
||||
var orderByClause = _orderBy.map((order) => order.compile()).join(', ');
|
||||
if (orderByClause?.isNotEmpty == true) {
|
||||
if (orderByClause.isNotEmpty == true) {
|
||||
b.write(' ORDER BY $orderByClause');
|
||||
}
|
||||
if (_limit != null) b.write(' LIMIT $_limit');
|
||||
|
|
Loading…
Reference in a new issue