| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | a short inspect is not helpful | Aaron Patterson | 2010-07-20 | 2 | -12/+0 |
* | Don't use a subquery when there are joins. Use a required alias for the subqu... | Emilio Tagua | 2010-06-23 | 1 | -4/+4 |
* | Add support for counting rows with conditions or limit using a subquery. | Emilio Tagua | 2010-06-23 | 1 | -0/+18 |
* | use subquery to get first records if DISTINCT is used (in Oracle compiler) | Raimonds Simanovskis | 2010-06-19 | 1 | -0/+8 |
* | Whitespace cleanup | Ernie Miller | 2010-05-27 | 2 | -3/+3 |
* | Merge branch 'brynary' | Ernie Miller | 2010-05-26 | 18 | -33/+33 |
|\ |
|
| * | Whitespace fixes | Bryan Helmkamp | 2010-05-26 | 18 | -33/+33 |
* | | Fix tests to work properly on Ruby 1.9, honor multiple calls to #order in mem... | Ernie Miller | 2010-05-21 | 7 | -18/+79 |
|/ |
|
* | Tests for ranges with excluded ends and complements | Ernie Miller | 2010-05-07 | 2 | -5/+82 |
* | noteq -> not_eq, notmatches -> not_matches, notin -> not_in | Ernie Miller | 2010-05-07 | 1 | -4/+4 |
* | Inequality shouldn't descend from equality, due to Rails type checks, and res... | Ernie Miller | 2010-05-07 | 1 | -3/+3 |
* | Tests for notmatches and notin, and fixes for issues found in tests | Ernie Miller | 2010-05-07 | 3 | -10/+35 |
* | Rename Attribute Not -> Inequality and add a Not predicate (complement) | Ernie Miller | 2010-05-07 | 1 | -1/+1 |
* | Added NotMatch and NotIn predicates, made Not derive from Equality (reverted ... | Ernie Miller | 2010-05-07 | 1 | -0/+4 |
* | Merge remote branch 'spastorino/master' | Emilio Tagua | 2010-04-22 | 1 | -0/+75 |
|\ |
|
| * | build expression not(nil) as IS NOT NULL | Santiago Pastorino | 2010-04-21 | 1 | -0/+75 |
* | | Return nil when looking up an attribute by name that does not exist instead o... | Carl Lerche | 2010-04-03 | 2 | -21/+9 |
* | | Create an Arel::Header class representing a relation's attributes | Carl Lerche | 2010-04-02 | 5 | -7/+45 |
|/ |
|
* | Restrictions should be able to contain multiple predicates. | Carl Lerche | 2010-03-23 | 1 | -0/+1 |
* | Cleanup the spec helper and spec rake task a bit | Carl Lerche | 2010-03-23 | 5 | -24/+24 |
* | Switch Arel::Relation to a module. This will allow for classes with Relation ... | Carl Lerche | 2010-03-22 | 1 | -1/+3 |
* | Add specs for simple in memory joins. | Carl Lerche | 2010-03-12 | 1 | -0/+40 |
* | Move the relation "integration" specs to specs/relations | Carl Lerche | 2010-03-12 | 2 | -31/+31 |
* | Add shared tests for skip | Carl Lerche | 2010-03-12 | 1 | -0/+23 |
* | Add full stack tests for #take | Carl Lerche | 2010-03-12 | 1 | -0/+27 |
* | Organize the matchers a bit more | Carl Lerche | 2010-03-12 | 8 | -93/+117 |
* | Add support for a NOT predicate | Carl Lerche | 2010-03-12 | 1 | -0/+33 |
* | We're obviously writing specs for arel. No need for a sub directory. | Carl Lerche | 2010-03-12 | 57 | -0/+0 |
* | This seems like it accidentally got included into the repo | Carl Lerche | 2010-03-12 | 1 | -0/+0 |
* | Add a bunch of specs for attribute type casting. | Carl Lerche | 2010-03-12 | 7 | -50/+424 |
* | Attributes should be typed | Carl Lerche | 2010-03-12 | 10 | -26/+33 |
* | Remove crazy | Carl Lerche | 2010-03-11 | 2 | -28/+0 |
* | Move all spec support files into spec/support | Carl Lerche | 2010-03-11 | 18 | -41/+43 |
* | Start writing integration specs for arel. | Carl Lerche | 2010-03-11 | 1 | -0/+120 |
* | Get the specs to start when an AR connection is not present. | Carl Lerche | 2010-03-11 | 1 | -1/+1 |
* | Release v0.3.0 | Emilio Tagua | 2010-03-10 | 1 | -1/+1 |
* | Arel doesn't has to know if a table or column exists. | Emilio Tagua | 2010-03-10 | 3 | -4/+21 |
* | Remove " AS " keyword from table aliasing. | Emilio Tagua | 2010-03-01 | 4 | -36/+36 |
* | changes for Oracle support - OracleCompiler and corresponding tests with Orac... | Raimonds Simanovskis | 2010-03-01 | 29 | -70/+693 |
* | Added support for RETURNING primary key when available, only for | Emilio Tagua | 2010-02-18 | 1 | -1/+12 |
* | Fix test which depends on the RUBY_VERSION when using sqlite3 adapter. | Emilio Tagua | 2010-02-17 | 1 | -1/+5 |
* | Quoting every part of a Range. Calling .to_s is not enough for Range with two... | Eugene Pimenov | 2010-02-01 | 5 | -5/+32 |
* | Fix the generated SQL when In predicate is supplied an empty Array | Pratik Naik | 2010-01-30 | 1 | -0/+19 |
* | Make sure string join relations can be chained | Pratik Naik | 2010-01-13 | 1 | -1/+30 |
* | Make sure not to use alias if it's same as the table name | Pratik Naik | 2010-01-12 | 1 | -0/+19 |
* | Add support for table aliasing | Pratik Naik | 2010-01-01 | 2 | -2/+74 |
* | Added having to use in combination with group to filter records. | Emilio Tagua | 2009-12-28 | 4 | -0/+57 |
* | Don't try to lock reads when using any SQLite adapter, it's redundant | Emilio Tagua | 2009-12-28 | 1 | -2/+16 |
* | Added lock to Arel, allowing a locking read if required. | Emilio Tagua | 2009-12-27 | 1 | -0/+47 |
* | Added "from" method, allowing to specify custom from clauses. | Emilio Tagua | 2009-12-27 | 1 | -0/+50 |