aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Adding SelectManager#limit= and removing limit nodes when nil is assigned to ↵Aaron Patterson2011-02-253-2/+19
| | | | limit
* one more spec updateAaron Patterson2011-02-241-2/+2
|
* updating gemspec and manifestAaron Patterson2011-02-242-9/+7
|
* refactoring custom lock logic to use sql literalsAaron Patterson2011-02-215-17/+15
|
* Lock should be a unary nodeAaron Patterson2011-02-218-18/+8
|
* Merge remote branch 'jstorimer/master' into omgAaron Patterson2011-02-216-12/+38
|\ | | | | | | | | * jstorimer/master: Allow database specific locking clauses to be used
| * Allow database specific locking clauses to be usedJesse Storimer2011-01-206-12/+38
| |
* | adding failing tests for rails #6384Aaron Patterson2011-02-211-0/+18
| |
* | Fix #not to stop wrapping in a grouping nodeErnie Miller2011-02-112-8/+5
| |
* | Fix modification of input on *_any/*_all predicationsErnie Miller2011-02-082-0/+18
| |
* | use the cache mechanism in the connection pool rather than our own cacheAaron Patterson2011-02-073-29/+19
| |
* | Merge branch 'named-function-predicates'Aaron Patterson2011-02-022-0/+8
|\ \ | | | | | | | | | | | | | | | * named-function-predicates: Test for NamedFunction predication chaining Chain predications off of named functions
| * | Test for NamedFunction predication chainingDaniel Azuma2011-01-191-0/+6
| | |
| * | Chain predications off of named functionsDaniel Azuma2011-01-191-0/+2
| |/
* | adding TOP to sub selects for mssqlAaron Patterson2011-02-023-9/+23
| |
* | fixing whitespace errorsAaron Patterson2011-02-021-1/+1
| |
* | Added test, thanks josephholstenBrian Dunn2011-02-021-0/+9
| |
* | Make #with chainablePaul Sadauskas2011-02-022-4/+3
| |
* | Added MINUS for OracleBrian Cardarella2011-01-233-0/+14
| | | | | | | | Aliased :minus to :except for the SelectManager
* | no need for is_a? checkAaron Patterson2011-01-221-1/+1
| |
* | other should not be optionalAaron Patterson2011-01-221-6/+4
| |
* | Added support for INTERSECT and EXCEPTBrian Cardarella2011-01-224-0/+74
| |
* | udpating manifest and gemspecAaron Patterson2011-01-212-6/+7
| |
* | WTF, tabs?Paul Sadauskas2011-01-214-69/+69
| |
* | WITH expr as array in visitorPaul Sadauskas2011-01-212-4/+3
| |
* | With node takes an array, less code to determine alternative nodesPaul Sadauskas2011-01-212-18/+3
| |
* | Don't need with_recursivePaul Sadauskas2011-01-212-3/+1
| |
* | Add support for WITH and UNIONPaul Sadauskas2011-01-218-6/+149
|/ | | | | | PostgreSQL WITH RECURSIVE support Make WITH be a unary node
* Regenerating arel.gemspec so the gemspec file is valid for gem buildKen Chau2011-01-061-10/+10
|
* Added Arel::Nodes::NamedFunction for representing generic SQL functionsAaron Patterson2011-01-0414-12/+102
|
* Merge branch '2-0-stable'Aaron Patterson2011-01-041-1/+0
|\ | | | | | | | | * 2-0-stable: visiting via superclass is OK, since module definitions help delegate
| * visiting via superclass is OK, since module definitions help delegateAaron Patterson2011-01-041-1/+0
| |
* | Merge branch '2-0-stable'Aaron Patterson2011-01-034-6/+8
|\| | | | | | | | | * 2-0-stable: adding better tests surrounding limits in adapter visitors
| * adding better tests surrounding limits in adapter visitorsAaron Patterson2011-01-034-6/+8
| |
* | Merge branch '2-0-stable'Aaron Patterson2011-01-033-2/+11
|\| | | | | | | | | * 2-0-stable: making sure limit is correctly copied to update manager
| * making sure limit is correctly copied to update managerAaron Patterson2011-01-033-2/+11
| |
* | Merge branch 'master' of github.com:rails/arelAaron Patterson2011-01-032-9/+28
|\ \ | | | | | | | | | | | | * 'master' of github.com:rails/arel: Allow HAVING to take multiple conditions, like WHERE
| * | Allow HAVING to take multiple conditions, like WHEREJon Leighton2011-01-042-9/+28
| | |
* | | Merge branch '2-0-stable'Aaron Patterson2011-01-031-1/+0
|\ \ \ | |/ / |/| / | |/ | | * 2-0-stable: should return nil instead of empty string
| * should return nil instead of empty stringAaron Patterson2011-01-031-1/+0
| |
* | Merge branch '2-0-stable'Aaron Patterson2011-01-031-3/+4
|\| | | | | | | | | * 2-0-stable: we do not need to modify the AST
| * we do not need to modify the ASTAaron Patterson2011-01-031-3/+4
| |
* | Merge branch '2-0-stable'Aaron Patterson2011-01-031-6/+6
|\| | | | | | | | | | | * 2-0-stable: fixing tests for oracle visitor fisting lots of oracle errors
| * fixing tests for oracle visitorAaron Patterson2011-01-032-7/+8
| |
| * fisting lots of oracle errorsAaron Patterson2011-01-031-4/+4
| |
* | fisting lots of oracle errorsAaron Patterson2011-01-031-4/+4
| |
* | top and limit can be visitedAaron Patterson2011-01-034-0/+8
| |
* | fisting mergefailAaron Patterson2011-01-031-4/+0
| |
* | limit and top files are not neededAaron Patterson2011-01-032-13/+0
| |
* | Merge branch '2-0-stable' into mergeAaron Patterson2011-01-0313-10/+80
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 2-0-stable: updating history Patched Arel v2.0.6 to support MSSQL SQL queries. Based on work of James Abley (https://github.com/jabley/arel). consolidating dot visitor methods refactoring where, fixing subselect implementation for passing a subquery to #in and #not_in tests for passing a subquery to #in and #not_in limit members of the AST are visited quoting limit nodes Conflicts: History.txt lib/arel/nodes.rb lib/arel/nodes/select_core.rb lib/arel/select_manager.rb lib/arel/visitors/to_sql.rb test/visitors/test_to_sql.rb