aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | | | | | | | | | | | moving expression up to function classAaron Patterson2010-09-232-1/+1
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | reordering order clauses :'(Aaron Patterson2010-09-231-1/+9
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | writing code that makes me sadAaron Patterson2010-09-231-1/+6
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | adding a select statment visitorAaron Patterson2010-09-232-1/+29
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | adding a postgres adapterAaron Patterson2010-09-234-8/+23
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | ignoring aliasAaron Patterson2010-09-232-1/+6
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | quoting update values using the columnAaron Patterson2010-09-222-3/+5
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | constructor can take column infoAaron Patterson2010-09-212-8/+26
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | fixing tests for mysql2Aaron Patterson2010-09-211-1/+1
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | making stuff work on mysqlAaron Patterson2010-09-218-13/+64
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | supporting ranges for IN statementsAaron Patterson2010-09-206-3/+49
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | dealing with empty in statementsAaron Patterson2010-09-202-1/+10
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | removing some debugging code. oops!Aaron Patterson2010-09-201-4/+0
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | using aliases for terminal nodesAaron Patterson2010-09-201-10/+11
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | from does not need to be a listAaron Patterson2010-09-205-13/+13
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | adding crazy code to fix the last two AR testsAaron Patterson2010-09-203-3/+40
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | if FROM is a string, convert to string literalAaron Patterson2010-09-182-1/+2
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | returning nil for tables that do not existAaron Patterson2010-09-182-21/+21
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | remove if defined?Aaron Patterson2010-09-171-1/+1
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | using a Hash with default proc to memoize dispatch methodsMike Dalessio2010-09-161-9/+4
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Revert "Table#[] returns nil when table does not exist"Aaron Patterson2010-09-152-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit e460aa96ae9bd5f1a24d798b2d22984a54810c70.
| | * | | | | | | | | | | | | | | | Table#[] returns nil when table does not existAaron Patterson2010-09-152-0/+9
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | right side set to sqlliteral if it is a stringAaron Patterson2010-09-151-1/+5
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | JoinSql visitor will visit left side if left is a joinAaron Patterson2010-09-152-3/+44
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | adding a grouping nodeAaron Patterson2010-09-157-15/+54
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | refactoring expressions to a moduleAaron Patterson2010-09-144-31/+27
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | adding sum to sql literalAaron Patterson2010-09-141-0/+4
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | VALUES are getting better everydayAaron Patterson2010-09-144-5/+11
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | visiting value nodes in the dot visitorAaron Patterson2010-09-141-0/+4
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | adding an EXISTS node, update method will generate an IN clauseAaron Patterson2010-09-149-6/+83
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | adding orders edge to the dot visitorAaron Patterson2010-09-141-0/+1
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | adding table alias to the TableAlias nodeAaron Patterson2010-09-141-0/+1
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Merge branch 'v1' of github.com:flavorjones/arel into v1Aaron Patterson2010-09-142-2/+8
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 'v1' of github.com:flavorjones/arel: sql visitor should emit a table alias name when visiting an attribute, if a table alias exists. dot visitor for binary nodes Conflicts: lib/arel/visitors/dot.rb
| | | * | | | | | | | | | | | | | | | sql visitor should emit a table alias name when visiting an attribute, if a ↵Mike Dalessio2010-09-141-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | table alias exists.
| | | * | | | | | | | | | | | | | | | dot visitor for binary nodesMike Dalessio2010-09-141-0/+7
| | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | adding AND nodes to dot visitorAaron Patterson2010-09-141-0/+1
| | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | updating gemspecAaron Patterson2010-09-141-6/+0
| | |/ / / / / / / / / / / / / / / /
| | * | | | | | | | | | | | | | | | stop the warningsAaron Patterson2010-09-121-1/+1
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | totally lame, but arel expects FROM to only be one itemAaron Patterson2010-09-123-7/+3
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | order accepts symbols for clausesAaron Patterson2010-09-122-1/+14
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | OUTER JOIN should be LEFT OUTER JOINAaron Patterson2010-09-122-2/+2
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | supporting symbols for group statementsAaron Patterson2010-09-122-0/+13
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | using table_alias when :as is passed to the constructorAaron Patterson2010-09-123-1/+19
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | visiting constraint edges of joinsAaron Patterson2010-09-121-0/+5
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | adding some backwards compatibilityAaron Patterson2010-09-122-0/+16
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | only visiting left side if left side is a JOINAaron Patterson2010-09-121-1/+4
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | supporting StringJoin in the JoinSQL visitorAaron Patterson2010-09-123-0/+14
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Add test for Hash visitor.Emilio Tagua2010-09-111-0/+4
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | We can visit hash.Emilio Tagua2010-09-111-0/+1
| | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | Add Min node.Emilio Tagua2010-09-115-0/+23
| | | | | | | | | | | | | | | | | |