aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel
Commit message (Collapse)AuthorAgeFilesLines
* orders are workingAaron Patterson2010-08-224-8/+39
|
* Merge branch 'v1' of github.com:flavorjones/arel into v1Aaron Patterson2010-08-198-0/+134
|\ | | | | | | | | | | | | | | | | * 'v1' of github.com:flavorjones/arel: DeleteStatement deep copy cleaning up describe/it block names SelectCore deep copies attributes Statement nodes deep-copy AST nodes TreeManager classes deep-copy their statements.
| * DeleteStatement deep copyMike Dalessio2010-08-191-0/+17
| |
| * cleaning up describe/it block namesMike Dalessio2010-08-193-5/+5
| |
| * SelectCore deep copies attributesMike Dalessio2010-08-191-0/+23
| |
| * Statement nodes deep-copy AST nodesMike Dalessio2010-08-193-0/+60
| |
| * TreeManager classes deep-copy their statements.Mike Dalessio2010-08-193-0/+34
| |
* | adding outer joinsAaron Patterson2010-08-192-2/+26
| |
* | joins can be createdAaron Patterson2010-08-183-3/+33
|/
* delete manager addedAaron Patterson2010-08-182-0/+67
|
* fixing update supportAaron Patterson2010-08-182-0/+18
|
* adding some activerecord compatibilityAaron Patterson2010-08-161-0/+18
|
* OR nodes are somewhat workingAaron Patterson2010-08-163-0/+43
|
* sql visitor can deal with TrueClassAaron Patterson2010-08-161-0/+4
|
* table responds to takeAaron Patterson2010-08-161-0/+8
|
* IN seems to workAaron Patterson2010-08-164-7/+28
|
* quoting strings from equality statements, adding to_dotAaron Patterson2010-08-161-0/+9
|
* update is working on the select managerAaron Patterson2010-08-142-0/+56
|
* update manager is workingAaron Patterson2010-08-141-0/+18
|
* basic updates are workingAaron Patterson2010-08-141-0/+43
|
* inserts have the correct syntaxAaron Patterson2010-08-132-4/+41
|
* insert manager implements "insert"Aaron Patterson2010-08-132-0/+26
|
* inserts are starting to take shapeAaron Patterson2010-08-131-2/+41
|
* insert manager is starting to take shapeAaron Patterson2010-08-133-23/+52
|
* table responds to "project"Aaron Patterson2010-08-131-0/+10
|
* Table.new can take a hash for the second paramAaron Patterson2010-08-131-0/+12
|
* project works with stringsAaron Patterson2010-08-131-0/+20
|
* limits are addedAaron Patterson2010-08-122-0/+36
|
* full sql statement generationAaron Patterson2010-08-121-0/+44
|
* to_sql visitor startedAaron Patterson2010-08-122-0/+18
|
* adding first nodeAaron Patterson2010-08-121-0/+17
|
* tables can fetch attributesAaron Patterson2010-08-122-1/+52
|
* starting a spec for the tableAaron Patterson2010-08-121-18/+19
|
* stripping the spec helperAaron Patterson2010-08-121-0/+38
|
* We're obviously writing specs for arel. No need for a sub directory.Carl Lerche2010-03-1257-3966/+0
|
* Add a bunch of specs for attribute type casting.Carl Lerche2010-03-121-50/+8
|
* Attributes should be typedCarl Lerche2010-03-1210-26/+33
|
* Start writing integration specs for arel.Carl Lerche2010-03-111-0/+120
|
* Release v0.3.0Emilio Tagua2010-03-101-1/+1
|
* Arel doesn't has to know if a table or column exists.Emilio Tagua2010-03-103-4/+21
|
* Remove " AS " keyword from table aliasing.Emilio Tagua2010-03-014-36/+36
|
* changes for Oracle support - OracleCompiler and corresponding tests with ↵Raimonds Simanovskis2010-03-0126-63/+638
| | | | Oracle syntax
* Added support for RETURNING primary key when available, only forEmilio Tagua2010-02-181-1/+12
| | | | PostgreSQL.
* Fix test which depends on the RUBY_VERSION when using sqlite3 adapter.Emilio Tagua2010-02-171-1/+5
|
* Quoting every part of a Range. Calling .to_s is not enough for Range with ↵Eugene Pimenov2010-02-012-2/+26
| | | | two Time objects.
* Fix the generated SQL when In predicate is supplied an empty ArrayPratik Naik2010-01-301-0/+19
|
* Make sure string join relations can be chainedPratik Naik2010-01-131-1/+30
|
* Make sure not to use alias if it's same as the table namePratik Naik2010-01-121-0/+19
|
* Add support for table aliasingPratik Naik2010-01-012-2/+74
| | | | | | | Example : users = Table(:users, :as => :accounts) users.to_sql => SELECT `accounts`.`id`, `accounts`.`name` FROM `users` AS `accounts`
* Added having to use in combination with group to filter records.Emilio Tagua2009-12-281-0/+36
|