Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make sure thread runs | Aaron Patterson | 2011-05-17 | 1 | -0/+1 |
| | |||||
* | do not cache sql literal values | Aaron Patterson | 2011-05-17 | 2 | -2/+3 |
| | |||||
* | no longer use this instance variable | Aaron Patterson | 2011-05-17 | 1 | -1/+1 |
| | |||||
* | refactoring to a method | Aaron Patterson | 2011-05-10 | 1 | -3/+11 |
| | |||||
* | Merge branch 'master' of github.com:rails/arel | Aaron Patterson | 2011-05-10 | 2 | -5/+21 |
|\ | | | | | | | | | * 'master' of github.com:rails/arel: Make ToSql more thread safe. | ||||
| * | Merge pull request #51 from square/thread-safety | Aaron Patterson | 2011-05-10 | 2 | -5/+21 |
| |\ | | | | | | | Make ToSql more thread safe. | ||||
| | * | Make ToSql more thread safe. | Damon McCormick + Cameron Walters | 2011-05-10 | 2 | -5/+21 |
| |/ | | | | | | | | | | | | | Because the ToSql visitor instance is shared across all threads, there is a race condition around column types for binary nodes. It's possible, for instance, to end up with ActiveRecord converting a string value in the final SQL to an integer during heavy concurrent operations. | ||||
* / | updating History | Aaron Patterson | 2011-05-10 | 1 | -0/+7 |
|/ | |||||
* | Merge pull request #50 from ernie/operation_ordering. | Aaron Patterson | 2011-05-02 | 2 | -0/+31 |
|\ | | | | | InfixOperations should support ordering | ||||
| * | InfixOperations are valid value expressions per SQL99 BNF, and | Ernie Miller | 2011-05-02 | 2 | -0/+31 |
|/ | | | | should support ordering | ||||
* | fixing spec | Aaron Patterson | 2011-04-30 | 1 | -3/+3 |
| | |||||
* | increasing version to 2.1.0 | Aaron Patterson | 2011-04-30 | 1 | -1/+1 |
| | |||||
* | merging old history, adding release date | Aaron Patterson | 2011-04-30 | 1 | -2/+20 |
| | |||||
* | Merged pull request #48 from ernie/down_with_to_s. | Aaron Patterson | 2011-04-29 | 4 | -7/+7 |
|\ | | | | | Stop calling to_s on aliases, require them to be strings already. | ||||
| * | Stop calling to_s on aliases, require them to be strings already. | Ernie Miller | 2011-04-29 | 4 | -7/+7 |
| | | |||||
* | | updating manifest and spec | Aaron Patterson | 2011-04-29 | 2 | -4/+8 |
|/ | |||||
* | Move #as to AliasPredication, stop overriding Function's #as. | Ernie Miller | 2011-04-29 | 9 | -9/+33 |
| | |||||
* | Revert "Merged pull request #40 from gmile/master." | Aaron Patterson | 2011-04-29 | 1 | -11/+1 |
| | | | | | This reverts commit 490d6f98f8974c717ddca29df162f5f1ad48e094, reversing changes made to dd07005dceb6641214f7d1166f75acbd379fb570. | ||||
* | Merge branch 'master' of github.com:rails/arel | Aaron Patterson | 2011-04-29 | 4 | -1/+52 |
|\ | | | | | | | | | | | * 'master' of github.com:rails/arel: replace 'LIMIT n' with 'FETCH FIRST n ROWS ONLY' when using ibm_db Generate more sqlish queue. | ||||
| * | Merged pull request #40 from gmile/master. | Aaron Patterson | 2011-04-29 | 1 | -1/+11 |
| |\ | | | | | | | Passing nil in array generates improper SQL | ||||
| | * | Generate more sqlish queue. | gmile | 2011-03-24 | 1 | -1/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | Now, instead of the following SQL code: some_field IN (1, 2, NULL) Arel will generate the proper one: some_field IN (1, 2) OR IS NULL | ||||
| * | | Merged pull request #46 from semmons99/master. | Aaron Patterson | 2011-04-29 | 3 | -0/+41 |
| |\ \ | | | | | | | | | replace 'LIMIT n' with 'FETCH FIRST n ROWS ONLY' when using ibm_db | ||||
| | * | | replace 'LIMIT n' with 'FETCH FIRST n ROWS ONLY' when using ibm_db | Shane Emmons | 2011-04-29 | 3 | -0/+41 |
| |/ / | |||||
* / / | removing the aliased orders method from the pg visitor | Aaron Patterson | 2011-04-28 | 1 | -13/+0 |
|/ / | |||||
* | | updating manifest and gemspec | Aaron Patterson | 2011-04-28 | 3 | -17/+22 |
| | | |||||
* | | Merged pull request #45 from codders/master. | Aaron Patterson | 2011-04-28 | 9 | -9/+43 |
|\ \ | | | | | | | Add support for specifying order direction on expressions | ||||
| * \ | Merge remote-tracking branch 'origin/master' | Arthur Taylor | 2011-04-28 | 0 | -0/+0 |
| |\ \ | |||||
| | * | | Fixed deep copy bug in SelectManager clone | Arthur Taylor | 2011-04-15 | 2 | -0/+15 |
| | | | | |||||
| * | | | Updated manifest, gemspec | Arthur Taylor | 2011-04-28 | 2 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: arel.gemspec | ||||
| * | | | Add support for ordering on expressions | Arthur Taylor | 2011-04-28 | 7 | -8/+41 |
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: lib/arel.rb lib/arel/attributes/attribute.rb lib/arel/nodes/infix_operation.rb lib/arel/nodes/named_function.rb Conflicts: lib/arel.rb lib/arel/attributes/attribute.rb | ||||
* | | | Merged pull request #44 from chrisberkhout/master. | Aaron Patterson | 2011-04-27 | 1 | -2/+2 |
|\ \ \ | | | | | | | | | 1st README example | ||||
| * | | | Fixed first example in README (it was attempting to call #to_sql on an ↵ | Chris Berkhout | 2011-04-27 | 1 | -2/+2 |
|/ / / | | | | | | | | | | Arel::Table). | ||||
* | | | adding attribute#lower for lowercasing an attribute | Aaron Patterson | 2011-04-25 | 2 | -0/+14 |
| | | | |||||
* | | | add a factory method for production LOWER functions | Aaron Patterson | 2011-04-25 | 2 | -0/+13 |
| | | | |||||
* | | | raising not implemented exceptions for distinct on where it is not supported | Aaron Patterson | 2011-04-21 | 2 | -0/+15 |
| | | | |||||
* | | | adding Distinct ON node | Aaron Patterson | 2011-04-21 | 8 | -36/+29 |
| | | | |||||
* | | | adding a DISTINCT node | Aaron Patterson | 2011-04-21 | 4 | -21/+44 |
| | | | |||||
* | | | adding a spec to demonstrate subqueries | Aaron Patterson | 2011-04-18 | 1 | -0/+12 |
| | | | |||||
* | | | fixing Table tests | Aaron Patterson | 2011-04-18 | 1 | -1/+1 |
| | | | |||||
* | | | Fixed deep copy bug in SelectManager clone | Arthur Taylor | 2011-04-19 | 2 | -0/+15 |
| | | | |||||
* | | | Improve performance of grouping_any/grouping_all | Ernie Miller | 2011-04-19 | 1 | -11/+4 |
|/ / | |||||
* | | deprecating SelectManager#wheres method | Aaron Patterson | 2011-04-11 | 2 | -0/+4 |
| | | |||||
* | | adding a Bin node to emit mysql BINARY keywords | Aaron Patterson | 2011-04-11 | 4 | -0/+32 |
| | | |||||
* | | updating the readme a little | Aaron Patterson | 2011-04-11 | 1 | -1/+8 |
| | | |||||
* | | use TableAlias nodes for aliasing subselects | Aaron Patterson | 2011-03-30 | 4 | -3/+7 |
| | | |||||
* | | fixing the leg order of TableAlias nodes | Aaron Patterson | 2011-03-30 | 3 | -3/+4 |
| | | |||||
* | | Make SelectManager#as act like node predications | John Mileham | 2011-03-25 | 2 | -4/+20 |
|/ | |||||
* | supporting any node in SelectManager#from | Aaron Patterson | 2011-03-23 | 2 | -2/+23 |
| | |||||
* | allowing sql literals for values in insert statements | Aaron Patterson | 2011-03-21 | 3 | -1/+15 |
| | |||||
* | added a factory method for creating values nodes | Aaron Patterson | 2011-03-21 | 2 | -1/+15 |
| |