Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Delete should respect 'limit' | Bradford Folkens | 2015-02-23 | 1 | -0/+1 |
| | | | | | Conflicts: lib/arel/visitors/to_sql.rb | ||||
* | Remove `engine` from `TreeManager` and subclasses | Sean Griffin | 2014-11-29 | 1 | -3/+3 |
| | | | | | | This constructor parameter was unused for everything except the convenience methods `to_sql` and `where_sql`. We can pass the engine into those methods directly. | ||||
* | explicitly pass the pk to compile_update | Aaron Patterson | 2013-11-16 | 1 | -2/+2 |
| | |||||
* | Remove deprecated calls to using `UpdateManager` without setting ↵ | Vipul A M | 2013-11-10 | 1 | -0/+1 |
| | | | | `UpdateManager#key` | ||||
* | Remove deprecated calls to `update` with preference to using ↵ | Vipul A M | 2013-11-10 | 1 | -13/+0 |
| | | | | `compile_update` and then calling `to_sql` on the resulting object to execute the SQL | ||||
* | Remove deprecated calls to `insert` with preference to using ↵ | Vipul A M | 2013-11-10 | 1 | -11/+0 |
| | | | | `compile_insert` and then calling `to_sql` on the resulting object to execute the SQL | ||||
* | Remove deprecated calls to `delete` with preference to using ↵ | Vipul A M | 2013-11-10 | 1 | -9/+0 |
| | | | | `compile_delete` and then calling `to_sql` on the resulting object to execute the SQL | ||||
* | ARel -> Arel | Xavier Noria | 2013-04-14 | 1 | -3/+3 |
| | | | | | | | The project uses "Arel" most of the time, but there were a few "ARel" here and there. I checked with @brynary back in 2010 to pick one for the Rails documentation guidelines and "Arel" was chosen and documented. This patch chooses "Arel" vs "ARel" based on that. | ||||
* | bumping to 3.0.0 | Aaron Patterson | 2012-01-12 | 1 | -3/+3 |
| | |||||
* | adding create_insert method | Aaron Patterson | 2011-03-21 | 1 | -1/+5 |
| | |||||
* | Merge branch '2-0-stable' | Aaron Patterson | 2011-01-03 | 1 | -1/+1 |
|\ | | | | | | | | | * 2-0-stable: making sure limit is correctly copied to update manager | ||||
| * | making sure limit is correctly copied to update manager | Aaron Patterson | 2011-01-03 | 1 | -1/+1 |
| | | |||||
* | | requiring that the primary key be set on the UpdateManager so that databases ↵ | Aaron Patterson | 2010-12-24 | 1 | -1/+1 |
| | | | | | | | | which do not support UPDATE with LIMIT will work | ||||
* | | only break backwards compatibility in major releases | Aaron Patterson | 2010-12-03 | 1 | -3/+3 |
| | | |||||
* | | deprecating the "delete" method in favor of compile_delete | Aaron Patterson | 2010-12-02 | 1 | -2/+12 |
| | | |||||
* | | deprecating the update method in favor of compile_update | Aaron Patterson | 2010-12-02 | 1 | -2/+13 |
| | | |||||
* | | deprecating "insert" | Aaron Patterson | 2010-12-02 | 1 | -3/+13 |
|/ | |||||
* | renaming @head to @ast | Aaron Patterson | 2010-11-05 | 1 | -2/+2 |
| | |||||
* | making stuff work on mysql | Aaron Patterson | 2010-09-21 | 1 | -10/+3 |
| | |||||
* | from does not need to be a list | Aaron Patterson | 2010-09-20 | 1 | -2/+2 |
| | |||||
* | adding an EXISTS node, update method will generate an IN clause | Aaron Patterson | 2010-09-14 | 1 | -3/+14 |
| | |||||
* | delete delegates to the connection | Aaron Patterson | 2010-08-23 | 1 | -1/+1 |
| | |||||
* | making sure update delegates to update and insert delegates to insert | Aaron Patterson | 2010-08-23 | 1 | -4/+3 |
| | |||||
* | adding outer joins | Aaron Patterson | 2010-08-19 | 1 | -0/+1 |
| | |||||
* | delete manager added | Aaron Patterson | 2010-08-18 | 1 | -0/+7 |
| | |||||
* | fixing update support | Aaron Patterson | 2010-08-18 | 1 | -1/+6 |
| | |||||
* | adding deprecated crud module for backwards compat | Aaron Patterson | 2010-08-16 | 1 | -0/+21 |