[Bast-commits] r4928 - SQL-Abstract/1.x/branches/1.50_RC/lib/SQL
dami at dev.catalyst.perl.org
dami at dev.catalyst.perl.org
Fri Oct 17 14:07:42 BST 2008
Author: dami
Date: 2008-10-17 14:07:41 +0100 (Fri, 17 Oct 2008)
New Revision: 4928
Modified:
SQL-Abstract/1.x/branches/1.50_RC/lib/SQL/Abstract.pm
Log:
more improvements / fixes in documentation
Modified: SQL-Abstract/1.x/branches/1.50_RC/lib/SQL/Abstract.pm
===================================================================
--- SQL-Abstract/1.x/branches/1.50_RC/lib/SQL/Abstract.pm 2008-10-17 07:07:17 UTC (rev 4927)
+++ SQL-Abstract/1.x/branches/1.50_RC/lib/SQL/Abstract.pm 2008-10-17 13:07:41 UTC (rev 4928)
@@ -1713,8 +1713,8 @@
-and => [
user => 'nwiger',
-nest => [
- -and => [workhrs => {'>', 20}, geo => 'ASIA' ],
- -and => [workhrs => {'<', 50}, geo => 'EURO' ]
+ ["-and", workhrs => {'>', 20}, geo => 'ASIA' ],
+ ["-and", workhrs => {'<', 50}, geo => 'EURO' ]
],
],
);
@@ -1782,7 +1782,7 @@
This would create:
- $stmt = "WHERE ( date_column = date \'2008-09-30\' - ?::integer )"
+ $stmt = "WHERE ( date_column = date '2008-09-30' - ?::integer )"
@bind = ('10');
@@ -2039,6 +2039,8 @@
on some dark areas of C<SQL::Abstract> v1.*
B<might behave differently> in v1.50.
+The main changes are :
+
=over
=item *
More information about the Bast-commits
mailing list