diff options
author | Nick Kallen <nkallen@nick-kallens-computer-2.local> | 2008-03-16 16:17:13 -0700 |
---|---|---|
committer | Nick Kallen <nkallen@nick-kallens-computer-2.local> | 2008-03-16 16:17:13 -0700 |
commit | 07f7f752fecb56316456f144c121e471fd0d0847 (patch) | |
tree | efe4da65736e808ecae0c7850e4d1fe32470c037 /TODO | |
parent | af3d7c5193eee90ad17b1ba8aaf5d76a2874c0a5 (diff) | |
download | rails-07f7f752fecb56316456f144c121e471fd0d0847.tar.gz rails-07f7f752fecb56316456f144c121e471fd0d0847.tar.bz2 rails-07f7f752fecb56316456f144c121e471fd0d0847.zip |
renamed operators
- equals / eq
- greater_than / gt
- etc.
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ done: . Audit SqlAlchemy for missing features - Generalized denormalizations on any aggregation (count, yes, but also max, min, average) - Remove operator overloading of << and <=> for joins. Make it just foo.join(bar) and foo.outer_join(bar). -- Remove operator overloading of == for predicates. make it a.equals(b) (note lack of question mark). +- Remove operator overloading of == for predicates. make it a.eq(b) (note lack of question mark). - hookup more predicates (=, <=, =>) - get some basic aggregations working: users.project(user[:points].max) - Alias Table Names |