aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Support Oracle bind parameter valueYasuo Honda2014-11-202-1/+16
|
* Use class objects rather than strings for the dispatch cacheSean Griffin2014-11-183-19/+11
| | | | | | | | The only reason we're using strings is to pre-populate the cache, but `Class#name` returns a new string instance on every call. This is a pretty major source of memory usage. We don't technically need to pre-populate the cache, and not doing so allows us to go back to using cache objects
* Add order to BindParams in the ToSql collectorSean Griffin2014-11-1712-16/+48
| | | | | | | | | | | | 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.
* cache the dispatch table on the depth first visitorAaron Patterson2014-11-102-6/+21
| | | | | We know the API for the depth first visitor in advance, so it's OK to calcuate this cache in advance
* oops! that should not have been checked inAaron Patterson2014-11-041-2/+1
|
* Look for `Enumerable` rather than `Array` in predicatesSean Griffin2014-11-021-2/+2
| | | | | It's not quite duck typed, but it will allow us to pass in our own objects with additional logic (like type casting).
* Fix rake test taskRafael Mendonça França2014-10-311-0/+9
|
* Revert "Revert "Merge pull request #300 from jpcody/master""Sean Griffin2014-10-313-19/+17
| | | | | | This reverts commit 9b92af7098b2728ced578ab9a7679176d20f120f. beta2 is out, and we've fixed the issue that this caused in Rails
* Bump to 6.0.0.beta2Godfrey Chan2014-10-301-1/+1
|
* Update the GemfileRafael Mendonça França2014-10-301-10/+1
|
* hoe is not the dependecy anymoreRafael Mendonça França2014-10-302-2/+2
|
* Stop using hoe to release the gemRafael Mendonça França2014-10-306-210/+52
|
* Revert "Merge pull request #300 from jpcody/master"Sean Griffin2014-10-303-17/+19
| | | | | This reverts commit 36836fa5e7c084c0dce2818577e6fd0cf815f786, reversing changes made to 53bc8426648cc93695525e8f12102cd416b2d772.
* Dry up building quoted nodes in predicationSean Griffin2014-10-271-15/+23
| | | | | Given that we are going to remove casting from Arel in the near future, having a single place nodes in predications will help.
* Merge pull request #333 from sgrif/sg-separate-range-methodSean Griffin2014-10-274-180/+192
|\ | | | | Deprecate passing ranges to `#in` and `#not_in`
| * Deprecate passing ranges to `#in` and `#not_in`Sean Griffin2014-10-254-180/+192
|/ | | | | | | The goal of these methods should be to generate in nodes, not handle every possible permutation of more than one value. The `#between` and `#not_between` methods have been extracted, which better represent the semantics of handling ranges in SQL.
* Refactor `#in` and `#not_in`Sean Griffin2014-10-251-16/+20
| | | | | | | These methods duplicate a lot of logic from the other predications. We can just use those methods directly, and only build nodes with the same name in our method directly. We've already had one bug that came from building nodes directly, rather than using the proper predicate.
* 💣Sean Griffin2014-10-251-4/+4
|
* Merge pull request #331 from sgrif/sg-in-should-not-break-queriesSean Griffin2014-10-242-7/+7
|\ | | | | `#not_in` with a range should respect proper precedence
| * `#not_in` with a range should respect proper precedenceSean Griffin2014-10-242-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, doing ```ruby relation[:id].not_eq(4).and(relation[:id].not_in(1..3)) ``` will generate ```sql "id" != 4 AND "id" < 1 OR "id" > 3 ``` Which would incorrectly include records with an id of 4, as the OR statement has higher precidence than the AND statement. The `or` method on `Node` properly groups the statement in parenthesis.
* | Merge pull request #332 from sgrif/sg-include-in-test-coverageSean Griffin2014-10-241-8/+201
|\ \ | | | | | | Improve test coverage for `#in` and `#not_in`
| * | Improve test coverage for `#in` and `#not_in`Sean Griffin2014-10-241-8/+201
| |/ | | | | | | | | | | These methods are going to go through some heavy refactoring, and moving logic around. This adds missing tests for each of the branches on the predicate.
* | Merge pull request #330 from sgrif/sg-binary-node-hash-equalitySean Griffin2014-10-242-1/+27
|\ \ | |/ |/| Binary nodes should not generate the same hash as nodes of other classes
| * Binary nodes should not generate the same hash as nodes of other classesSean Griffin2014-10-242-1/+27
|/
* Merge pull request #326 from claudiob/reuse-maybe-visitRafael Mendonça França2014-10-231-3/+3
|\ | | | | Completes 08e6491 in reusing `maybe_visit`
| * Completes 08e6491 in reusing `maybe_visit`claudiob2014-10-231-3/+3
|/ | | | | | | | | :sweat: I don't know why the tests did not fail, but to keep the same syntax as before, `collector =` is required. Maybe `visit` changes `collector` in-place, so the result is the same, but since I'm not sure about the side effects, I think this PR is needed to. Sorry! :sweat:
* Merge pull request #325 from claudiob/reuse-maybe-visit-methodRafael Mendonça França2014-10-232-18/+4
|\ | | | | Reuse `maybe_visit` method
| * Reuse `maybe_visit` methodclaudiob2014-10-232-18/+4
|/ | | | | This commit simply removes duplicated code by reusing the existing `maybe_visit` method.
* Merge pull request #324 from vipulnsward/cteMatthew Draper2014-10-241-1/+1
|\ | | | | `Expresssions` => `Expressions`
| * `Expresssions` => `Expressions` [ci skip]Vipul A M2014-10-241-1/+1
|/
* Merge pull request #318 from tamird/match-escapeMatthew Draper2014-09-266-20/+60
|\ | | | | {Matches,DoesNotMatch} support the ESCAPE clause
| * {Matches,DoesNotMatch} support the ESCAPE clauseTamir Duberstein2014-09-256-20/+60
|/
* move the dispatch table to be per-instanceAaron Patterson2014-09-228-26/+38
| | | | | | | visitors are not shared among threads, so any mutations to the cache should be OK. The cache is also pre-populated on construction, but we should pull that out so we can share the cache among visitors in the future.
* connections should cache these values, so remove the cache in arelAaron Patterson2014-09-221-4/+3
|
* Merge pull request #317 from dimko/patch-2Rafael Mendonça França2014-09-171-1/+1
|\ | | | | Fix set visiting spec
| * Fix set visiting specDimko2014-09-171-1/+1
|/
* Merge pull request #167 from pparidans/informix-v9-supportRafael Mendonça França2014-09-172-7/+7
|\ | | | | Informix versions < 10 use 'FIRST' keyword instead of 'LIMIT'
| * Informix versions < 10 use 'FIRST' keyword instead of 'LIMIT'Pierre Paridans2014-09-162-7/+7
| | | | | | | | Still supported in versions 10+
* | Merge pull request #137 from dimko/visit_setRafael Mendonça França2014-09-175-0/+16
|\ \ | |/ |/| Added a visitor for Set objects
| * added a visitor for Set objectsDimko2012-09-185-0/+16
| |
* | Merge pull request #316 from vipulnsward/remove-aliasMatthew Draper2014-09-171-1/+1
|\ \ | | | | | | Remove unused @alias, being referenced in hashing.
| * | Remove unused @alias, being referenced in hashing.Vipul A M2014-09-161-1/+1
|/ /
* | Build on ruby-headMatthew Draper2014-09-171-1/+3
| |
* | Merge pull request #315 from tamird/129Matthew Draper2014-09-172-1/+11
|\ \ | | | | | | Wrap group_by sql with a subquery for limiting rows in Oracle.
| * | Wrap group_by sql with a subquery for limiting rows in Oracle.Chris Dinger2014-09-162-1/+11
|/ / | | | | | | Fixes #128
* | Merge pull request #311 from tamird/masterRafael Mendonça França2014-09-163-18/+12
|\ \ | | | | | | `Extract#as` should not mutate the receiver
| * | `Extract#as` should not mutate the receiverTamir Duberstein2014-09-133-18/+12
|/ / | | | | | | Fixes https://github.com/rails/rails/issues/16913
* | Merge pull request #306 from mxhold/masterRafael Mendonça França2014-09-122-0/+30
|\ \ | | | | | | Add SelectManager#distinct_on to set/unset Arel::Nodes::DistinctOn quantifier
| * | Add SelectManager#distinct_on to set/unset Arel::Nodes::DistinctOn quantifierMax Holder2014-08-302-0/+30
| | |
* | | Merge pull request #304 from bigxiang/fix_lt_and_lteq_errorRafael Mendonça França2014-09-122-6/+50
|\ \ \ | | | | | | | | Fix lt & lteq don't accept most of values.