| Commit message (Expand) | Author | Age | Files | Lines |
* | fixing incompatibilities with AR | Aaron Patterson | 2010-07-21 | 3 | -4/+3 |
* | take advantage of inheritence for easier codes | Aaron Patterson | 2010-07-20 | 2 | -4/+4 |
* | inequality is a special case of equality | Aaron Patterson | 2010-07-20 | 2 | -2/+2 |
* | delegate and call cached connection | Aaron Patterson | 2010-07-20 | 1 | -3/+4 |
* | avoid double call to to_s, avoid present? | Aaron Patterson | 2010-07-20 | 1 | -1/+5 |
* | Use block_given? instead defining block. | Emilio Tagua | 2010-06-24 | 1 | -2/+6 |
* | Performance: use blocks only when needed. | Emilio Tagua | 2010-06-24 | 1 | -2/+6 |
* | Allow externally defined AR adapters to define their own compiler. | Myron Marston | 2010-06-23 | 1 | -2/+8 |
* | Don't use a subquery when there are joins. Use a required alias for the subqu... | Emilio Tagua | 2010-06-23 | 1 | -3/+4 |
* | Add support for counting rows with conditions or limit using a subquery. | Emilio Tagua | 2010-06-23 | 1 | -6/+17 |
* | fixed having clause for Oracle compiler | Raimonds Simanovskis | 2010-06-19 | 1 | -2/+2 |
* | use subquery to get first records if DISTINCT is used (in Oracle compiler) | Raimonds Simanovskis | 2010-06-19 | 1 | -2/+2 |
* | Merge branch 'master' of github.com:brynary/arel | Emilio Tagua | 2010-05-27 | 9 | -25/+25 |
|\ |
|
| * | Whitespace fixes | Bryan Helmkamp | 2010-05-26 | 9 | -25/+25 |
* | | Fix tests to work properly on Ruby 1.9, honor multiple calls to #order in mem... | Ernie Miller | 2010-05-21 | 2 | -3/+3 |
|/ |
|
* | Inequality shouldn't descend from equality, due to Rails type checks, and res... | Ernie Miller | 2010-05-07 | 5 | -14/+2 |
* | Support predicate complements and alternate not syntax (overload BasicObject#!) | Ernie Miller | 2010-05-07 | 5 | -27/+42 |
* | Tests for notmatches and notin, and fixes for issues found in tests | Ernie Miller | 2010-05-07 | 2 | -6/+53 |
* | Rename Attribute Not -> Inequality and add a Not predicate (complement) | Ernie Miller | 2010-05-07 | 2 | -7/+15 |
* | Cleaner support for Ranges with excluded end. | Ernie Miller | 2010-05-07 | 1 | -0/+10 |
* | Add grouped predicates (_any/_all) and refactored predication method definitions | Ernie Miller | 2010-05-07 | 1 | -0/+18 |
* | Added NotMatch and NotIn predicates, made Not derive from Equality (reverted ... | Ernie Miller | 2010-05-07 | 5 | -1/+31 |
* | Merge remote branch 'spastorino/master' | Emilio Tagua | 2010-04-22 | 4 | -1/+15 |
|\ |
|
| * | build expression not(nil) as IS NOT NULL | Santiago Pastorino | 2010-04-21 | 4 | -1/+15 |
* | | Create an Arel::Header class representing a relation's attributes | Carl Lerche | 2010-04-02 | 3 | -8/+15 |
|/ |
|
* | Use adapter add_limit_offset! method when building query. | Emilio Tagua | 2010-03-25 | 2 | -19/+5 |
* | Restrictions should be able to contain multiple predicates. | Carl Lerche | 2010-03-23 | 1 | -1/+1 |
* | Switch Arel::Relation to a module. This will allow for classes with Relation ... | Carl Lerche | 2010-03-22 | 8 | -9/+11 |
* | fixing uninitialized ivar warning | Aaron Patterson | 2010-03-14 | 1 | -0/+1 |
* | Add support for a NOT predicate | Carl Lerche | 2010-03-12 | 2 | -0/+10 |
* | Attributes should be typed | Carl Lerche | 2010-03-12 | 5 | -12/+52 |
* | Arel doesn't has to know if a table or column exists. | Emilio Tagua | 2010-03-10 | 1 | -3/+15 |
* | Refactor thethe wayy to obtain primary key value. | Emilio Tagua | 2010-03-01 | 1 | -6/+7 |
* | Remove " AS " keyword from table aliasing. | Emilio Tagua | 2010-03-01 | 1 | -9/+2 |
* | Prevent from getting errors when trying to get primary key value. | Emilio Tagua | 2010-03-01 | 1 | -6/+6 |
* | pass primary_key value to AR adapter insert method (necessary for Oracle adap... | Raimonds Simanovskis | 2010-03-01 | 1 | -1/+7 |
* | cache primary key per engine connection, updated gemspec file | Raimonds Simanovskis | 2010-03-01 | 1 | -4/+6 |
* | use primary_key method in OracleCompiler#select_sql | Raimonds Simanovskis | 2010-03-01 | 1 | -9/+3 |
* | changes for Oracle support - OracleCompiler and corresponding tests with Orac... | Raimonds Simanovskis | 2010-03-01 | 5 | -68/+192 |
* | Fix limited_update_conditions on MySQLCompiler to receive and build | Emilio Tagua | 2010-02-25 | 1 | -1/+2 |
* | raise an error if limit for deletion is specified while using IBM_DB | Praveen Devarao | 2010-02-25 | 1 | -1/+1 |
* | Moved adding of limit on deletion and adding of limit on update conditions to... | Praveen Devarao | 2010-02-25 | 3 | -5/+70 |
* | Refactored primary_key to look up for the real primary_key and cache it. | Emilio Tagua | 2010-02-19 | 1 | -4/+5 |
* | Insertions should use insert and not execute to get a valid returning | Emilio Tagua | 2010-02-18 | 4 | -27/+30 |
* | Fixed compiler require. | Emilio Tagua | 2010-02-18 | 1 | -1/+1 |
* | Added support for RETURNING primary key when available, only for | Emilio Tagua | 2010-02-18 | 4 | -2/+11 |
* | Moved primary_key to relation, send pk to engine, to build a better | Emilio Tagua | 2010-02-18 | 3 | -8/+11 |
* | Merge branch 'master' of github.com:rails/arel | Emilio Tagua | 2010-02-17 | 1 | -1/+1 |
|\ |
|
| * | Quoting every part of a Range. Calling .to_s is not enough for Range with two... | Eugene Pimenov | 2010-02-01 | 1 | -1/+1 |
* | | Move update conditions with limit logic into compilers. | Emilio Tagua | 2010-02-16 | 3 | -10/+15 |