projects
/
dbsrgits/SQL-Abstract-2.0-ish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
dc50948
)
Update binop mapping to include >= and <=
Ash Berlin [Wed, 25 Mar 2009 18:41:12 +0000 (18:41 +0000)]
lib/SQL/Abstract.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/SQL/Abstract.pm
b/lib/SQL/Abstract.pm
index
18e799b
..
95178a4
100644
(file)
--- a/
lib/SQL/Abstract.pm
+++ b/
lib/SQL/Abstract.pm
@@
-25,7
+25,9
@@
class SQL::Abstract {
our %BINOP_MAP = (
'>' => '>',
+ '>=' => '>=',
'<' => '<',
+ '<=' => '<=',
'==' => '=',
'!=' => '!=',
# LIKE is always "field LIKE <value>"