aboutsummaryrefslogtreecommitdiffstats
path: root/test/collectors
Commit message (Collapse)AuthorAgeFilesLines
* Remove `engine` from `TreeManager` and subclassesSean Griffin2014-11-292-2/+2
| | | | | | 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.
* Add order to BindParams in the ToSql collectorSean Griffin2014-11-172-5/+5
| | | | | | | | | | | | This removes the need for us to do the re-ordering by walking the AST in ActiveRecord. We're using a block to communicate with the collector, since the collector needs to be the thing which knows about the index, while the visitor is the thing that needs to know the syntax. The BindParam needs to know about neither of these things, so it's been changed to stop being a subclass of SqlLiteral I could also see an alternative implementation using format strings if for some reason blocks cause a problem.
* Fix warning form bind collector testVipul A M2014-05-251-1/+1
|
* add test for sql string collectorAaron Patterson2014-04-091-0/+38
|
* add a compile method to the collectorsAaron Patterson2014-04-091-0/+8
|
* adding a bind value collectorAaron Patterson2014-04-091-0/+62