aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel
Commit message (Collapse)AuthorAgeFilesLines
* Fix limited_update_conditions on MySQLCompiler to receive and buildEmilio Tagua2010-02-251-1/+2
| | | | limit.
* raise an error if limit for deletion is specified while using IBM_DBPraveen Devarao2010-02-251-1/+1
| | | | Signed-off-by: Emilio Tagua <miloops@gmail.com>
* Moved adding of limit on deletion and adding of limit on update conditions ↵Praveen Devarao2010-02-253-5/+70
| | | | | | to GenericCompiler, to provide flexibility to handle db specifics Signed-off-by: Emilio Tagua <miloops@gmail.com>
* Refactored primary_key to look up for the real primary_key and cache it.Emilio Tagua2010-02-191-4/+5
|
* Insertions should use insert and not execute to get a valid returningEmilio Tagua2010-02-184-27/+30
| | | | value. Moved clasuses to Arel::Relation.
* Fixed compiler require.Emilio Tagua2010-02-181-1/+1
|
* Added support for RETURNING primary key when available, only forEmilio Tagua2010-02-184-2/+11
| | | | PostgreSQL.
* Moved primary_key to relation, send pk to engine, to build a betterEmilio Tagua2010-02-183-8/+11
| | | | query if possible.
* Merge branch 'master' of github.com:rails/arelEmilio Tagua2010-02-171-1/+1
|\
| * Quoting every part of a Range. Calling .to_s is not enough for Range with ↵Eugene Pimenov2010-02-011-1/+1
| | | | | | | | two Time objects.
* | Move update conditions with limit logic into compilers.Emilio Tagua2010-02-163-10/+15
| |
* | If a compiler is not found for the current adapter, use the generic one.Emilio Tagua2010-02-161-1/+5
| |
* | Removed blank lines, rename query to subquery.Emilio Tagua2010-02-161-4/+2
| |
* | Move using_distinct_on? to PostgreSQL compiler. Extract order tweakingEmilio Tagua2010-02-162-9/+12
| | | | | | | | to a new method.
* | Extract SQL logic from Arel::Relation into compilers.Emilio Tagua2010-02-159-74/+130
|/
* Fix the generated SQL when In predicate is supplied an empty ArrayPratik Naik2010-01-301-1/+5
|
* Cache adapter_name in Sql::EnginePratik Naik2010-01-211-0/+4
|
* Make sure string join relations can be chainedPratik Naik2010-01-131-0/+4
|
* Table alias should be considered when checking for equalityPratik Naik2010-01-121-2/+3
|
* Make sure not to use alias if it's same as the table namePratik Naik2010-01-121-1/+1
|
* Add support for table aliasingPratik Naik2010-01-013-5/+18
| | | | | | | Example : users = Table(:users, :as => :accounts) users.to_sql => SELECT `accounts`.`id`, `accounts`.`name` FROM `users` AS `accounts`
* Remove every new line when generating queries, this may build invalid ↵Emilio Tagua2009-12-312-5/+5
| | | | queries on SQLite.
* Attributes may be an Arel value which doesn't respond to aggregation?, don't ↵Emilio Tagua2009-12-291-1/+1
| | | | test them.
* Added having to use in combination with group to filter records.Emilio Tagua2009-12-286-2/+29
|
* Don't try to lock reads when using any SQLite adapter, it's redundantEmilio Tagua2009-12-281-1/+1
| | | | and may generate an invalid query.
* Added lock to Arel, allowing a locking read if required.Emilio Tagua2009-12-275-3/+23
|
* Don't split sql logging across multiple lines.Emilio Tagua2009-12-271-1/+1
|
* Removed useless attribute definition from TableReference.Emilio Tagua2009-12-271-4/+0
|
* Added "from" method, allowing to specify custom from clauses.Emilio Tagua2009-12-277-4/+26
|
* Don't split sql logging across multiple lines.Emilio Tagua2009-12-261-1/+1
|
* Ruby 1.9: Array#to_s behaves like inspect now, so we don't want to use it ↵Bryan Helmkamp2009-11-101-1/+1
| | | | here (needs spec!)
* Ruby 1.9: Sort attributes deterministically so specs always passBryan Helmkamp2009-11-091-3/+19
|
* Removing unused params from #to_sql methods on writesBryan Helmkamp2009-10-011-3/+4
|
* WhitespaceBryan Helmkamp2009-09-301-9/+9
|
* Pull primitives up one levelBryan Helmkamp2009-09-306-6/+6
|
* Create Predicates module to match directory structureBryan Helmkamp2009-09-304-96/+102
|
* Move extensions directories to core_extensionsBryan Helmkamp2009-09-3014-10/+10
|
* Fix almost all Ruby warnings during spec suiteBryan Helmkamp2009-09-202-4/+10
|
* WhitespaceBryan Helmkamp2009-09-209-9/+9
|
* Merge remote branch 'miloops/master' into miloopsBryan Helmkamp2009-09-208-17/+73
|\ | | | | | | | | | | | | Conflicts: spec/connections/mysql_connection.rb spec/connections/postgresql_connection.rb spec/connections/sqlite3_connection.rb
| * Accept Arel::Value in hash values and treat them properly.Emilio Tagua2009-08-141-1/+1
| |
| * Allow joining a StringJoin with another join relation.Emilio Tagua2009-08-141-2/+2
| |
| * Allow SQL strings to insert query. Insert should better return engine's result.Emilio Tagua2009-07-012-4/+8
| |
| * If the class or method isn't defined use "id" as primary_key.Emilio Tagua2009-06-231-1/+6
| |
| * Build valid SQL query when using PostreSQL with given order and DISTINCTEmilio Tagua2009-06-231-0/+24
| | | | | | | | ON clause. TODO: refactoring to clean up components.
| * Build valid SQL query for SQLite3 and PostgreSQL when updating records with ↵Emilio Tagua2009-06-231-2/+18
| | | | | | | | limited conditions
| * Allow strings as update assignmentsEmilio Tagua2009-06-101-3/+7
| |
| * Return delete result instead Arel objectEmilio Tagua2009-06-021-2/+0
| |
| * Allow expressions on literal SQL fragmentsEmilio Tagua2009-05-281-1/+3
| |
| * Don't quote the table if it isn't a table name. By doing this Arel supports ↵Emilio Tagua2009-05-281-2/+6
| | | | | | | | using custom SQL FROM like: edges USE INDEX(unique_edge_index)