aboutsummaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* adding unary nodeAaron Patterson2010-11-298-29/+23
|
* insert statements supportedAaron Patterson2010-11-293-2/+9
|
* adding select statement supportAaron Patterson2010-11-291-0/+9
|
* adding select coreAaron Patterson2010-11-291-0/+9
|
* update statement supportedAaron Patterson2010-11-291-0/+9
|
* mostly implemented depth-first traversalAaron Patterson2010-11-293-0/+83
|
* make table aliases cheaper to allocateAaron Patterson2010-11-242-8/+4
|
* adding an AS nodeAaron Patterson2010-11-234-1/+16
|
* adding a "not" factory method for creating Not nodesAaron Patterson2010-11-234-0/+23
|
* mysql will lock for updateAaron Patterson2010-11-221-0/+4
|
* terrorist version bumpAaron Patterson2010-11-171-1/+1
|
* Fixed Ruby 1.8 performance regression for Nodes::In and Nodes::NotIn queries ↵Rolf Timmermans2010-11-181-7/+7
| | | | with very wide ranges that was caused by using Range#min and Range#max rather than Range#begin and Range#end. Ruby 1.8 uses Enumerable#min and Enumerable#max in Ranges, which calls to_a internally. It is not necessary to enumerate the range in order to construct the predicates. At the same time, an off-by-one error (failing test) with exclusive-end Ranges in Nodes::NotIn queries was fixed.
* Fix a bit the initialization of TableIvan Ukhov2010-11-171-1/+1
|
* Let table_exists? find tables in @@table_cache even if symbols are passed as ↵Ivan Ukhov2010-11-171-2/+2
| | | | their names
* terrorist version bumpAaron Patterson2010-11-161-1/+1
|
* added a visitor for Class objectsAaron Patterson2010-11-161-0/+1
|
* returning undefined for unknown column typesAaron Patterson2010-11-162-7/+8
|
* small additional fix for order_hacks method for OracleRaimonds Simanovskis2010-11-161-2/+6
|
* fix one more time order_hacks method for OracleRaimonds Simanovskis2010-11-161-8/+17
| | | correctly split order string by commas ignoring commas which separate function arguments
* terrorist version bumpAaron Patterson2010-11-111-1/+1
|
* support stringinquirer stringAaron Patterson2010-11-111-0/+1
|
* Merge branch 'master' of github.com:brynary/arelAaron Patterson2010-11-111-1/+17
|\ | | | | | | | | * 'master' of github.com:brynary/arel: fix order_hacks method for Oracle when complex functions are used in order by
| * fix order_hacks method for Oracle when complex functions are used in order byRaimonds Simanovskis2010-11-061-1/+17
| |
* | arel more nicely supports EXISTS queriesAaron Patterson2010-11-054-8/+11
| |
* | mysql selects from dual on empty from statementsAaron Patterson2010-11-052-0/+6
| |
* | renaming @head to @astAaron Patterson2010-11-056-35/+36
|/
* Add ToSql NilClass visitorErnie Miller2010-11-041-0/+1
|
* Refactor predication methods to be available to SqlLiterals as well.Ernie Miller2010-10-274-174/+180
|
* Merge branch 'master' of github.com:rails/arelAaron Patterson2010-10-261-0/+1
|\ | | | | | | | | * 'master' of github.com:rails/arel: Added Bignum to visitor
| * Added Bignum to visitorrugek2010-10-261-0/+1
| |
* | generate correct select if only offset is present (in Oracle)Raimonds Simanovskis2010-10-211-0/+14
|/
* adding default limits when there is an offset for sqlite and mysql [#5316 ↵Aaron Patterson2010-10-204-0/+25
| | | | state:resolved]
* doing a little cleanup on the visitorsAaron Patterson2010-10-194-3/+9
|
* adding a base class visitorAaron Patterson2010-10-193-10/+22
|
* Fisting arel specs -- still needs tree_manager and cleanupRyan Davis2010-10-181-5/+1
|
* Created syntactic sugar Table(...) methodSnuggs2010-10-161-1/+5
|
* symbols work as sql literalsAaron Patterson2010-10-151-1/+1
|
* version bumpAaron Patterson2010-10-131-1/+1
|
* add locking support for postgresAaron Patterson2010-10-131-0/+4
|
* bumping versionAaron Patterson2010-10-131-3/+1
|
* fixing manifest fileAaron Patterson2010-10-121-0/+9
|
* implementing where_sql methodAaron Patterson2010-10-122-0/+8
|
* alias visitor_for to forAaron Patterson2010-10-032-1/+2
|
* Support Attribute#asc and Attribute#desc to create orderingsErnie Miller2010-09-295-0/+37
|
* In SQL visitor, too. :)Ernie Miller2010-09-291-0/+1
|
* Support visiting Arel_Attribute_FloatErnie Miller2010-09-291-0/+1
|
* Don't reassign array in ToSql#visit_Arel_Nodes_NotInErnie Miller2010-09-291-2/+3
|
* adding better dot file support for our nodesAaron Patterson2010-09-295-5/+41
|
* fixing column escape for IN nodes. [resolves:5732]Aaron Patterson2010-09-292-6/+12
|
* Merge remote branch 'ernie/master'Aaron Patterson2010-09-297-0/+176
|\ | | | | | | | | | | | | * ernie/master: Make PostgreSQL play nice with its friends. (matches -> ILIKE instead of LIKE) Add support for remaining *_any/*_all attribute methods, and add matches/does_not_match/not_in Add eq_any.