Release 1.82
[dbsrgits/SQL-Abstract.git] / lib / SQL / Abstract.pm
index 596c589..f4d4c0b 100644 (file)
@@ -27,7 +27,7 @@ BEGIN {
 # GLOBALS
 #======================================================================
 
-our $VERSION  = '1.81_01';
+our $VERSION  = '1.82';
 
 # This would confuse some packagers
 $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
@@ -2928,13 +2928,13 @@ forms. Examples:
     \[ 'FUNC(colA, ?)', $x ]      | ORDER BY FUNC(colA, ?)
                                   |   /* ...with $x bound to ? */
                                   |
-    [                             |
-      { -asc => 'colA' },         | ORDER BY colA ASC, colB DESC,
-      { -desc => [qw/colB/] },    |          colC ASC, colD ASC,
-      { -asc => [qw/colC colD/] },|          colE DESC, FUNC(colF, ?)
-      \'colE DESC',               |   /* ...with $x bound to ? */
-      \[ 'FUNC(colF, ?)', $x ],   |
-    ]                             |
+    [                             | ORDER BY
+      { -asc => 'colA' },         |     colA ASC,
+      { -desc => [qw/colB/] },    |     colB DESC,
+      { -asc => [qw/colC colD/] },|     colC ASC, colD ASC,
+      \'colE DESC',               |     colE DESC,
+      \[ 'FUNC(colF, ?)', $x ],   |     FUNC(colF, ?)
+    ]                             |   /* ...with $x bound to ? */
     ===============================================================