aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Table#join will noop when nil is passedAaron Patterson2010-09-092-0/+8
|
* adding locking node to the ASTAaron Patterson2010-09-087-2/+36
|
* we can visit floats!Aaron Patterson2010-09-082-0/+5
|
* average node is addedAaron Patterson2010-09-089-50/+63
|
* adding having nodesAaron Patterson2010-09-087-1/+39
|
* adding maximum nodesAaron Patterson2010-09-086-0/+61
|
* as is implementedAaron Patterson2010-09-081-0/+10
|
* we can visit big decimalAaron Patterson2010-09-082-0/+7
|
* adding a sum nodeAaron Patterson2010-09-085-0/+39
|
* visiting symbols in the SQL visitorAaron Patterson2010-09-083-1/+3
|
* Table#project takes multiple parametersAaron Patterson2010-09-082-6/+8
|
* on can take multiple argsAaron Patterson2010-09-072-2/+52
|
* moving deprecated constants to the correct placeAaron Patterson2010-09-073-6/+1
|
* count takes distinctAaron Patterson2010-09-072-2/+9
|
* adding "as" and to_sql to count nodesAaron Patterson2010-09-075-2/+40
|
* group is implemented on tableAaron Patterson2010-09-072-0/+12
|
* adding group to TableAaron Patterson2010-09-072-0/+13
|
* group nodes are working!Aaron Patterson2010-09-076-4/+58
|
* nooping on nil parametersAaron Patterson2010-09-072-0/+7
|
* OUTER joins should be LEFT outer joinsAaron Patterson2010-09-073-3/+3
|
* visiting outer joinsAaron Patterson2010-09-071-0/+1
|
* getting better on joinsAaron Patterson2010-09-073-0/+33
|
* failing test for join on select managerAaron Patterson2010-09-071-0/+16
|
* joins are starting to work betterAaron Patterson2010-09-072-2/+16
|
* adding joins method to TableAaron Patterson2010-09-072-0/+12
|
* adding backwards compat nodesAaron Patterson2010-09-072-0/+6
|
* doing sql literal conversionAaron Patterson2010-09-071-1/+5
|
* dot visitor can visit count nodesAaron Patterson2010-09-061-0/+5
|
* adding backwards compat methodsAaron Patterson2010-09-062-0/+30
|
* fixing warningAaron Patterson2010-09-061-1/+1
|
* select manager responds to orderAaron Patterson2010-09-062-0/+11
|
* fixing version so tests run with railsAaron Patterson2010-09-051-1/+1
|
* deep copies of statements aren't necessary. shallow copy the top-level arrays.Mike Dalessio2010-08-3010-39/+25
|
* fixing typos in specMike Dalessio2010-08-301-2/+2
|
* specs for DeleteManager deep copyMike Dalessio2010-08-301-0/+11
|
* we can visit the date!Aaron Patterson2010-08-242-0/+5
|
* return sql literal nodesAaron Patterson2010-08-242-3/+5
|
* adding order clauses method to the select managerAaron Patterson2010-08-245-3/+31
|
* moving visitor logic to the visitorAaron Patterson2010-08-242-3/+5
|
* adding string join nodes and a visitor to produce backwards compatible ↵Aaron Patterson2010-08-2410-6/+58
| | | | "join_sql"
* not implementing to_a yetAaron Patterson2010-08-231-0/+4
|
* project takes *args nowAaron Patterson2010-08-232-5/+11
|
* visiting binary columnsAaron Patterson2010-08-231-0/+1
|
* AND nodes are supportedAaron Patterson2010-08-236-0/+33
|
* Squashed commit of the following:Aaron Patterson2010-08-234-2/+7
| | | | | | | | commit 3c6727732b349551df342b9eee66ed53d47e53eb Author: Aaron Patterson <aaron.patterson@gmail.com> Date: Mon Aug 23 14:11:34 2010 -0700 adding table alias
* delete delegates to the connectionAaron Patterson2010-08-233-1/+14
|
* making sure update delegates to update and insert delegates to insertAaron Patterson2010-08-233-5/+56
|
* adding count nodesAaron Patterson2010-08-235-0/+39
|
* orders are workingAaron Patterson2010-08-227-11/+49
|
* Merge branch 'v1' of github.com:flavorjones/arel into v1Aaron Patterson2010-08-1916-0/+178
|\ | | | | | | | | | | | | | | | | * '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.