| Commit message (Expand) | Author | Age | Files | Lines |
* | avoid double call to to_s, avoid present? | Aaron Patterson | 2010-07-20 | 1 | -1/+5 |
* | 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 |
* | Merge branch 'master' of github.com:brynary/arel | Emilio Tagua | 2010-05-27 | 1 | -1/+1 |
|\ |
|
| * | Whitespace fixes | Bryan Helmkamp | 2010-05-26 | 1 | -1/+1 |
* | | Fix tests to work properly on Ruby 1.9, honor multiple calls to #order in mem... | Ernie Miller | 2010-05-21 | 1 | -2/+2 |
|/ |
|
* | Added NotMatch and NotIn predicates, made Not derive from Equality (reverted ... | Ernie Miller | 2010-05-07 | 1 | -0/+4 |
* | Create an Arel::Header class representing a relation's attributes | Carl Lerche | 2010-04-02 | 2 | -5/+9 |
* | Use adapter add_limit_offset! method when building query. | Emilio Tagua | 2010-03-25 | 1 | -5/+5 |
* | Switch Arel::Relation to a module. This will allow for classes with Relation ... | Carl Lerche | 2010-03-22 | 5 | -6/+6 |
* | fixing uninitialized ivar warning | Aaron Patterson | 2010-03-14 | 1 | -0/+1 |
* | Attributes should be typed | Carl Lerche | 2010-03-12 | 1 | -5/+3 |
* | Arel doesn't has to know if a table or column exists. | Emilio Tagua | 2010-03-10 | 1 | -3/+15 |
* | cache primary key per engine connection, updated gemspec file | Raimonds Simanovskis | 2010-03-01 | 1 | -4/+6 |
* | changes for Oracle support - OracleCompiler and corresponding tests with Orac... | Raimonds Simanovskis | 2010-03-01 | 2 | -65/+75 |
* | Moved adding of limit on deletion and adding of limit on update conditions to... | Praveen Devarao | 2010-02-25 | 2 | -5/+8 |
* | 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 | 3 | -26/+29 |
* | 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 | 2 | -1/+6 |
* | Moved primary_key to relation, send pk to engine, to build a better | Emilio Tagua | 2010-02-18 | 2 | -7/+10 |
* | Move update conditions with limit logic into compilers. | Emilio Tagua | 2010-02-16 | 2 | -10/+12 |
* | If a compiler is not found for the current adapter, use the generic one. | Emilio Tagua | 2010-02-16 | 1 | -1/+5 |
* | Move using_distinct_on? to PostgreSQL compiler. Extract order tweaking | Emilio Tagua | 2010-02-16 | 1 | -4/+0 |
* | Extract SQL logic from Arel::Relation into compilers. | Emilio Tagua | 2010-02-15 | 4 | -73/+78 |
* | Table alias should be considered when checking for equality | Pratik Naik | 2010-01-12 | 1 | -2/+3 |
* | Make sure not to use alias if it's same as the table name | Pratik Naik | 2010-01-12 | 1 | -1/+1 |
* | Add support for table aliasing | Pratik Naik | 2010-01-01 | 1 | -3/+15 |
* | Remove every new line when generating queries, this may build invalid queries... | Emilio Tagua | 2009-12-31 | 2 | -5/+5 |
* | Added having to use in combination with group to filter records. | Emilio Tagua | 2009-12-28 | 1 | -0/+6 |
* | Don't try to lock reads when using any SQLite adapter, it's redundant | Emilio Tagua | 2009-12-28 | 1 | -1/+1 |
* | Added lock to Arel, allowing a locking read if required. | Emilio Tagua | 2009-12-27 | 1 | -2/+4 |
* | Don't split sql logging across multiple lines. | Emilio Tagua | 2009-12-27 | 1 | -1/+1 |
* | Added "from" method, allowing to specify custom from clauses. | Emilio Tagua | 2009-12-27 | 1 | -2/+6 |
* | Don't split sql logging across multiple lines. | Emilio Tagua | 2009-12-26 | 1 | -1/+1 |
* | Ruby 1.9: Array#to_s behaves like inspect now, so we don't want to use it her... | Bryan Helmkamp | 2009-11-10 | 1 | -1/+1 |
* | Ruby 1.9: Sort attributes deterministically so specs always pass | Bryan Helmkamp | 2009-11-09 | 1 | -3/+19 |
* | Removing unused params from #to_sql methods on writes | Bryan Helmkamp | 2009-10-01 | 1 | -3/+4 |
* | Whitespace | Bryan Helmkamp | 2009-09-30 | 1 | -9/+9 |
* | Allow joining a StringJoin with another join relation. | Emilio Tagua | 2009-08-14 | 1 | -2/+2 |
* | Allow SQL strings to insert query. Insert should better return engine's result. | Emilio Tagua | 2009-07-01 | 1 | -3/+8 |
* | If the class or method isn't defined use "id" as primary_key. | Emilio Tagua | 2009-06-23 | 1 | -1/+6 |
* | Build valid SQL query when using PostreSQL with given order and DISTINCT | Emilio Tagua | 2009-06-23 | 1 | -0/+24 |
* | Build valid SQL query for SQLite3 and PostgreSQL when updating records with l... | Emilio Tagua | 2009-06-23 | 1 | -2/+18 |
* | Allow strings as update assignments | Emilio Tagua | 2009-06-10 | 1 | -3/+7 |
* | Expand usages of #hash_on. The #hash definition it produces looks broken, but... | Bryan Helmkamp | 2009-05-18 | 1 | -1/+8 |
* | Extracting #build_query method for creating SQL from parts | Bryan Helmkamp | 2009-05-17 | 3 | -16/+25 |
* | Refactor #select_sql. Extract methods to generate clauses | Bryan Helmkamp | 2009-05-17 | 1 | -7/+27 |