| Commit message (Expand) | Author | Age | Files | Lines |
* | split indexes and column types on money / binary iteration | Aaron Patterson | 2011-04-22 | 1 | -6/+5 |
* | fetch result row arrays from pg in C and return early if there are no money o... | Aaron Patterson | 2011-04-22 | 1 | -31/+36 |
* | set the backtrace to prevent AR exceptions from lying to us | Aaron Patterson | 2011-04-22 | 1 | -1/+3 |
* | removing incorrect comment and string concatenation | Aaron Patterson | 2011-04-22 | 1 | -4/+1 |
* | The #substitute_at gets an ActiveRecord::ConnectionAdapters::Column in #inser... | Ken Collins | 2011-04-23 | 1 | -1/+1 |
* | Move #exec_insert to abstract adapter's database statements. | Ken Collins | 2011-04-22 | 4 | -12/+7 |
* | stop using distinct on for the unique id queries. [#6450 state:resolved] | Aaron Patterson | 2011-04-21 | 2 | -1/+3 |
* | Avoid define_method if possible. | José Valim | 2011-04-19 | 2 | -2/+2 |
* | Bring back support for passing a callable object to the default_scope macro. ... | Jon Leighton | 2011-04-18 | 1 | -0/+12 |
* | Un-deprecate using 'default_scope' as a macro, but if you are calling the mac... | Jon Leighton | 2011-04-18 | 1 | -20/+27 |
* | Fix test_load_save in test/cases/binary_test.rb (thanks @tenderlove for actua... | Jon Leighton | 2011-04-17 | 1 | -2/+1 |
* | Bring back some bits of documentation for scopes which were removed as part o... | Jon Leighton | 2011-04-17 | 1 | -1/+29 |
* | Revert "Deprecate defining scopes with a callable (lambda, proc, etc) via the... | Jon Leighton | 2011-04-17 | 1 | -60/+2 |
* | Return nil from read_attribute(:foo) if 'foo' is not present in the @attribut... | Jon Leighton | 2011-04-15 | 1 | -1/+1 |
* | Undo performances regressions I introduced in bbe0a507f287c20ab4ae8a244fbfc81... | Jon Leighton | 2011-04-15 | 1 | -5/+23 |
* | Remove unnecessary code from define_read_method and add assertion to make sur... | Jon Leighton | 2011-04-15 | 1 | -7/+4 |
* | sort insert columns for better cache hits | Aaron Patterson | 2011-04-14 | 1 | -1/+1 |
* | refactoring inserts to use the same method on the connection | Aaron Patterson | 2011-04-14 | 1 | -21/+16 |
* | mimic prepared statements in the exec_insert for mysql2 | Aaron Patterson | 2011-04-14 | 1 | -0/+11 |
* | mysql type cast should return integers when typecasting true / false | Aaron Patterson | 2011-04-14 | 1 | -0/+6 |
* | using the database adapter to typecast before executing prepared statement | Aaron Patterson | 2011-04-14 | 2 | -2/+14 |
* | inserting big decimals as strings works consistently among dbs, so use string... | Aaron Patterson | 2011-04-14 | 1 | -1/+1 |
* | insert statements are prepared, but values are not escaped properly | Aaron Patterson | 2011-04-14 | 5 | -8/+64 |
* | adding a type cast method for prepared statements | Aaron Patterson | 2011-04-14 | 2 | -1/+37 |
* | Extract the constraint-building for joins in JoinAssociation into a separate ... | Jon Leighton | 2011-04-14 | 1 | -8/+14 |
* | Fixes performance issue introduced in 3.0.6 (issue #6695) | Stian Grytøyr | 2011-04-14 | 1 | -3/+5 |
* | do not depend on to_yaml being called, but rather depend on YAML being dumped | Aaron Patterson | 2011-04-13 | 1 | -1/+1 |
* | use index based substitution for bind parameters | Aaron Patterson | 2011-04-13 | 3 | -4/+4 |
* | Remove `#among?` from Active Support | Prem Sichanugrist | 2011-04-13 | 8 | -8/+8 |
* | Deprecate defining scopes with a callable (lambda, proc, etc) via the scope c... | Jon Leighton | 2011-04-12 | 1 | -2/+60 |
* | ActiveRecord::Base.scopes hash is not needed | Jon Leighton | 2011-04-12 | 2 | -18/+4 |
* | Evaluate default scopes at the last possible moment in order to avoid problem... | Jon Leighton | 2011-04-12 | 5 | -16/+40 |
* | Deprecated support for passing hashes and relations to default_scope, in favo... | Jon Leighton | 2011-04-12 | 3 | -58/+95 |
* | Removing the scope-caching which happens on association proxies, because the ... | Jon Leighton | 2011-04-12 | 2 | -14/+0 |
* | stop using deprecated methods in arel | Aaron Patterson | 2011-04-11 | 1 | -2/+2 |
* | Change Object#either? to Object#among? -- thanks to @jamesarosen for the sugg... | David Heinemeier Hansson | 2011-04-12 | 8 | -8/+8 |
* | remove so many nested if statements | Aaron Patterson | 2011-04-11 | 1 | -9/+11 |
* | wrap the pg_get_serial_sequence function and reuse it for the default sequenc... | Aaron Patterson | 2011-04-11 | 1 | -2/+10 |
* | cache table exists queries in prepared statement cache | Aaron Patterson | 2011-04-11 | 1 | -3/+6 |
* | only use the primary_key method, refactor schema and table name parsing | Aaron Patterson | 2011-04-11 | 1 | -13/+15 |
* | use prepared statements for primary key queries | Aaron Patterson | 2011-04-11 | 1 | -2/+15 |
* | last insert id can never be called, so remove that code path | Aaron Patterson | 2011-04-11 | 1 | -11/+3 |
* | we know the table and pk, so we can calculate a default sequence name | Aaron Patterson | 2011-04-11 | 1 | -3/+4 |
* | always look up pk and sequence unless both are provided | Aaron Patterson | 2011-04-11 | 1 | -6/+5 |
* | pg does not know the insert_id in advance, so super will never return true | Aaron Patterson | 2011-04-11 | 1 | -13/+10 |
* | updating the docco for ActiveRecord::Result | Aaron Patterson | 2011-04-11 | 1 | -2/+2 |
* | implement exec_query on mysql2 adapter | Aaron Patterson | 2011-04-11 | 1 | -2/+20 |
* | make sqlite insert_sql more consistent with other adapters | Aaron Patterson | 2011-04-11 | 1 | -1/+2 |
* | adding exec_insert for postgresql | Aaron Patterson | 2011-04-11 | 1 | -0/+4 |
* | properly name schema queries for the logger | Aaron Patterson | 2011-04-11 | 1 | -10/+10 |