Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #425 from vipulnsward/fix-warnings | Rafael França | 2016-04-11 | 1 | -1/+1 |
|\ | | | | | Fix warnings from test_to_sql test | ||||
| * | Fix warnings from test_to_sql test | Vipul A M | 2016-04-11 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #420 from zhufenggood/master | Rafael França | 2016-03-30 | 1 | -1/+1 |
|\ | | | | | Update to_sql.rb. Slightly performance improment. | ||||
| * | Update to_sql.rb. Slightly performance improment. | zhufenggood | 2016-03-31 | 1 | -1/+1 |
|/ | | | Update to_sql.rb. Slightly performance improment. | ||||
* | Merge pull request #416 from jeffcole/clean-up-readme-code | Rafael França | 2016-03-01 | 1 | -35/+75 |
|\ | | | | | Clean up README code formatting and grammar | ||||
| * | Fix grammar in README | Jeff Cole | 2016-02-28 | 1 | -9/+9 |
| | | | | | | | | | | | | * Fixes grammatical errors * Fixes capitalization * Fixes punctuation | ||||
| * | Clean up README code | Jeff Cole | 2016-02-28 | 1 | -26/+66 |
|/ | | | | | * Fixes syntax highlighting of the output from `SqlLiteral` * Adds whitespace to improve readability | ||||
* | Merge pull request #414 from bertBruynooghe/master | Ernie Miller | 2016-02-17 | 2 | -0/+20 |
|\ | | | | | added Casted#hash | ||||
| * | added Casted#hash | Bert Bruynooghe | 2016-02-17 | 2 | -0/+20 |
|/ | |||||
* | Merge pull request #412 from yui-knk/remove_not_used_codes | Sean Griffin | 2016-02-06 | 1 | -23/+0 |
|\ | | | | | Delete not used codes | ||||
| * | Delete not used codes | yui-knk | 2016-02-06 | 1 | -23/+0 |
|/ | | | | | These codes were introduced by 03724fb1789198cc394f6e8b69cf9404e03eddd7, and to be not used by 79411322ae225289e1c051f4f68ed84c6349e4a0. | ||||
* | Test with Ruby 2.3 and allow failures with ruby-head | Rafael Mendonça França | 2016-01-06 | 1 | -1/+4 |
| | |||||
* | Merge pull request #408 from sjaveed/bitwise_operations | Rafael França | 2016-01-06 | 9 | -1/+173 |
|\ | | | | | Support for Bitwise Operations as InfixOperations | ||||
| * | * Support for bitwise operations as infix operators. Tests included. | Shahbaz Javeed | 2016-01-06 | 9 | -1/+173 |
|/ | | | | | | | | | | | | | | | | | | | | | | *** Individual commit messages included below *** * Preliminary support for bitwise operations as infix operators. Tests to follow. * Added bitwise xor, shift left and shift right operators * Fixed the BitwiseOr class so it uses the :| operator instead of :& * All the methods for the bitwise operators in the Arel::Math module now wrap them up in Arel::Nodes::Grouping so the operation becomes isolated like addition and subtraction * Preliminary set of tests for the new operators * Updated README with examples of bitwise operations * Added a new UnaryOperation class which is a riff on the InfixOperation class * Added tests for UnaryOperation (inspired by InfixOperation tests) * Added the bitwise not (~) operator as a UnaryOperation * Added tests for the bitwise not operator * Added documentation for the bitwise not operator * Updated gemspec using `rake arel.gemspec` | ||||
* | Merge pull request #410 from kbrock/concat | Rafael França | 2016-01-06 | 8 | -3/+47 |
|\ | | | | | Add database specific string concatenation | ||||
| * | Add database specific string concatenation | Keenan Brock | 2016-01-05 | 8 | -3/+47 |
|/ | |||||
* | Merge pull request #400 from felixbuenemann/case-node | Rafael França | 2016-01-05 | 8 | -1/+256 |
|\ | | | | | Implement CASE Conditional Expression | ||||
| * | Implement CASE Conditional Expression | Felix Bünemann | 2016-01-05 | 8 | -1/+256 |
|/ | |||||
* | Merge pull request #409 from jeroenvisser101/patch-1 | Guillermo Iguaran | 2015-12-31 | 1 | -1/+1 |
|\ | | | | | Update copyright year | ||||
| * | Update copyright year | Jeroen Visser | 2016-01-01 | 1 | -1/+1 |
|/ | | | New year, new license! | ||||
* | Merge pull request #407 from tadeusrox/rename_markdown | Rafael França | 2015-12-29 | 4 | -6/+6 |
|\ | | | | | Rename README.markdown to README.md | ||||
| * | Rename README.markdown to README.md | Vinicius Tadeu | 2015-12-27 | 4 | -6/+6 |
|/ | |||||
* | Release 7.0.0 | Rafael Mendonça França | 2015-12-17 | 3 | -2/+10 |
| | |||||
* | Merge pull request #349 from edpaget/delegate-where-sql-visitor | Sean Griffin | 2015-12-17 | 3 | -2/+32 |
|\ | | | | | | | Delegate to Connection Visitor in WhereSQL Visitor | ||||
| * | Inject the visitor rather than relying on other objects internals | Sean Griffin | 2015-12-17 | 2 | -2/+7 |
| | | | | | | | | | | | | This is ultimately messy no matter what, and increases the coupling to the database backend, but we can at least contain it somewhat into an object that's already coupled. | ||||
| * | Delegate to Connection Visitor in WhereSQL Visitor | Edward Paget | 2015-12-17 | 2 | -1/+26 |
|/ | | | | | | | | | | | | The WhereSQL visitor always uses the generic ToSQL visitor to create the where clause sql statement. This means that it'll miss database specific statements, such as 'ILIKE' in PostgreSQL. Since the `#where_sql` method is mainly used for ActiveRecord error reporting, this discrepancy could be confusing to users. This patch changes the WhereSQL visitor to use the its connection visitor to generate SQL for each statement in the SelectManager's wheres array. Then lets them be joined together with ' AND '. | ||||
* | Merge pull request #329 from vipulnsward/add-attribute-aggregate-tests | Rafael França | 2015-12-17 | 1 | -1/+10 |
|\ | | | | | Added test for verifying proper sql generated by minimum aggregate method | ||||
| * | - Added test for verifying proper sql generated by minimum aggregate method. | Vipul A M | 2014-10-24 | 1 | -1/+10 |
| | | |||||
* | | Merge pull request #369 from codeodor/patch-1 | Rafael França | 2015-12-17 | 2 | -4/+10 |
|\ \ | | | | | | | Improve error message when passed unsupported type | ||||
| * | | Use a specific exception for unsupported visits | Sammy Larbi | 2015-07-14 | 2 | -4/+10 |
| | | | |||||
| * | | Improve error message when passed unsupported type | Sammy Larbi | 2015-07-14 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #355 from jemc/patch-1 | Rafael Mendonça França | 2015-12-17 | 1 | -4/+2 |
|\ \ \ | | | | | | | | | | | | | Test with rbx-2 on Travis-CI | ||||
| * | | | Use bundle exec on Travis-CI | Joe Eli McIlvain | 2015-02-19 | 1 | -1/+1 |
| | | | | | | | | | | | | This avoids problems with using the wrong version of gems that are also included in the Ruby standard library, like `minitest` | ||||
| * | | | Test with rbx-2 on Travis-CI | Joe Eli McIlvain | 2015-02-19 | 1 | -4/+1 |
| | | | | | | | | | | | | Using `rbx-2` is the recommended way to test with the 2.0 branch of Rubinius. | ||||
* | | | | Merge pull request #381 from carsonreinke/function_order | Rafael França | 2015-12-17 | 2 | -0/+10 |
|\ \ \ \ | | | | | | | | | | | Add OrderPredications back into Nodes::Function | ||||
| * | | | | Add OrderPredications back into Nodes::Function (removed with deprecation of ↵ | Carson Reinke | 2015-07-23 | 2 | -0/+10 |
| | |/ / | |/| | | | | | | | | | | Expression) | ||||
* | | | | Merge pull request #390 from yahonda/expr_oracle12 | Rafael França | 2015-12-17 | 1 | -2/+2 |
|\ \ \ \ | | | | | | | | | | | No need to quote limit for Oracle12 visitor | ||||
| * | | | | No need to quote limit for Oracle12 visitor | Yasuo Honda | 2015-09-01 | 1 | -2/+2 |
| | | | | | |||||
* | | | | | Merge pull request #403 from kbrock/regexp | Aaron Patterson | 2015-12-16 | 7 | -23/+91 |
|\ \ \ \ \ | | | | | | | | | | | | | Case insensitivite match/regular expressions | ||||
| * | | | | | test match predicate case sensitivity attribute | Keenan Brock | 2015-12-05 | 1 | -0/+6 |
| | | | | | | |||||
| * | | | | | introduce predicate {does_not_}matches_regexp | Keenan Brock | 2015-12-05 | 2 | -6/+21 |
| | | | | | | |||||
| * | | | | | use valid regular expression in regexp test | Keenan Brock | 2015-12-05 | 1 | -12/+12 |
| | | | | | | |||||
| * | | | | | Add case sensitive regexp | Keenan Brock | 2015-12-05 | 5 | -4/+33 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Explicitly declare if this is case sensitive or not currently postgres assumes case insensitive regexp no other databases support regexps | ||||
| * | | | | | Add case sensitive match | Keenan Brock | 2015-12-05 | 4 | -11/+29 |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Explicitly declare if this is case sensitive or not most implementation assume case sensitive postgres assumes case insensitive | ||||
* | | | | | Merge pull request #396 from ur0/master | Sean Griffin | 2015-10-02 | 1 | -0/+0 |
|\ \ \ \ \ | | | | | | | | | | | | | Rename MIT-LICENSE to MIT-LICENSE.txt | ||||
| * | | | | | Rename MIT-LICENSE to MIT-LICENSE.txt | Umang Raghuvanshi | 2015-10-02 | 1 | -0/+0 |
|/ / / / / | | | | | | | | | | | | | | | | This renames MIT-LICENSE to MIT-LICENSE.txt. Closes #395, prevents builds from breaking. | ||||
* | | | | | Merge pull request #392 from maclover7/contributing | Rafael Mendonça França | 2015-09-09 | 4 | -6/+113 |
|\ \ \ \ \ | | | | | | | | | | | | | Add CONTRIBUTING.md | ||||
| * | | | | | Add CONTRIBUTING.md [ci skip] | maclover7 | 2015-09-01 | 4 | -6/+113 |
| |/ / / / | |||||
* | | | | | Merge pull request #391 from yahonda/add_oracle12 | Rafael Mendonça França | 2015-09-01 | 1 | -1/+1 |
|\ \ \ \ \ | |/ / / / |/| | | | | Add "lib/arel/visitors/oracle12.rb" to its gemspec | ||||
| * | | | | Add "lib/arel/visitors/oracle12.rb" to its gemspec | Yasuo Honda | 2015-09-01 | 1 | -1/+1 |
|/ / / / |