Stop differentiating between ORDER BY foo and ORDER BY foo ASC by default
[dbsrgits/SQL-Abstract.git] / t / 23reassembly-bugs.t
CommitLineData
73835ff0 1use strict;
2use warnings;
3
4use Test::More;
5use SQL::Abstract::Tree;
6
7my $sqlat = SQL::Abstract::Tree->new({});
8
9is(
10 $sqlat->format('SELECT foo AS bar FROM baz ORDER BY x + ? DESC, baz.g'),
11 'SELECT foo AS bar FROM baz ORDER BY x + ? DESC, baz.g',
12 'complex order by correctly reassembled'
13);
14
15done_testing;