aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/select_statement.rb
Commit message (Collapse)AuthorAgeFilesLines
* call super from initializeAaron Patterson2013-05-171-0/+1
|
* Add equality to ALL THE THINGS (that matter)Ernie Miller2012-08-181-1/+15
| | | | | | | | | | | | People are often trying to use ARel nodes inside ActiveRecord, and when they do so, lots of things can break, because ActiveRecord relies on Array#uniq and sometimes hash key equality to handle values that end up in wheres, havings, etc. By implementing equality for all the nodes, we should hopefully be able to prevent any nodes (even nodes containing other nodes) from failing an equality check they should otherwise pass, and alleviate many of these errors. Fixes #130
* Don't need with_recursivePaul Sadauskas2011-01-211-2/+1
|
* Add support for WITH and UNIONPaul Sadauskas2011-01-211-6/+8
| | | | | | PostgreSQL WITH RECURSIVE support Make WITH be a unary node
* fixing create_string_join factory methodAaron Patterson2010-12-141-0/+1
|
* insert statements supportedAaron Patterson2010-11-291-1/+1
|
* adding a select statment visitorAaron Patterson2010-09-231-1/+2
|
* adding an EXISTS node, update method will generate an IN clauseAaron Patterson2010-09-141-1/+1
|
* adding an offset nodeAaron Patterson2010-09-101-1/+2
|
* adding locking node to the ASTAaron Patterson2010-09-081-1/+2
|
* deep copies of statements aren't necessary. shallow copy the top-level arrays.Mike Dalessio2010-08-301-1/+1
|
* orders are workingAaron Patterson2010-08-221-3/+4
|
* Statement nodes deep-copy AST nodesMike Dalessio2010-08-191-0/+5
|
* limits are addedAaron Patterson2010-08-121-0/+13