| Commit message (Expand) | Author | Age | Files | Lines |
* | use bind values for join columns | Aaron Patterson | 2012-02-27 | 1 | -4/+4 |
* | Merge pull request #5168 from kennyj/fix_5152 | Aaron Patterson | 2012-02-27 | 1 | -1/+1 |
|\ |
|
| * | Remove NULLS FIRST/LAST. closes #5152 | kennyj | 2012-02-25 | 1 | -1/+1 |
* | | Fix type_to_sql with text and limit on mysql/mysql2. Fix GH #3931. | kennyj | 2012-02-26 | 1 | -9/+20 |
|/ |
|
* | removes verify_active_connections! | Xavier Noria | 2012-02-24 | 1 | -15/+0 |
* | prepared statements can be disabled | Aaron Patterson | 2012-02-21 | 6 | -28/+53 |
* | more ruby 2.0 respond_to? changes | Aaron Patterson | 2012-02-21 | 1 | -1/+1 |
* | tag bind params with a bind param object | Aaron Patterson | 2012-02-20 | 3 | -3/+3 |
* | removed commented line. 3434 tests, 10531 assertions, 0 failures, 0 errors, 3... | William Lawson | 2012-02-20 | 1 | -1/+0 |
* | Restored ability to identify ID and Sequence from tables relying on a nonmatc... | William Lawson | 2012-02-20 | 1 | -16/+37 |
* | use Process.pid rather than $$ | Aaron Patterson | 2012-02-16 | 3 | -7/+7 |
* | database connections are automatically established after forking. | Aaron Patterson | 2012-02-16 | 2 | -14/+52 |
* | Autoload various constants effectively in abstract connection adapter. | Waseem Ahmad | 2012-02-16 | 1 | -9/+12 |
* | Revert "No need to pass options which is never used" | Rafael Mendonça França | 2012-02-15 | 1 | -2/+2 |
* | remove unnecessary require core_ext/string/encoding | Sergey Nartimov | 2012-02-14 | 1 | -1/+0 |
* | Alias reconnect! to reset! for Mysql2 adapter since they have same | Waseem Ahmad | 2012-02-12 | 1 | -5/+1 |
* | PG column consults oid types when typecasting | Aaron Patterson | 2012-02-10 | 3 | -7/+22 |
* | dynamically populate casting objects via the pg_type table | Aaron Patterson | 2012-02-10 | 2 | -35/+74 |
* | Merge branch 'joelhoffman-postgres_schema_builder' into instance_reader | Aaron Patterson | 2012-02-10 | 3 | -27/+41 |
|\ |
|
| * | Also support writing the hstore back to the database | Joel | 2012-02-08 | 1 | -0/+5 |
| * | Hstore values are all strings | Joel | 2012-02-08 | 1 | -1/+1 |
| * | string_to_hstore / hstore_to_string, serializing | Joel | 2012-02-08 | 2 | -11/+20 |
| * | Additional hstore tests, supporting null values, better compliance with postg... | Joel | 2012-02-08 | 1 | -21/+17 |
| * | add hstore to postgres native types and defaults | Joel | 2012-02-08 | 1 | -1/+5 |
* | | Merge branch 'master' into instance_reader | Aaron Patterson | 2012-02-10 | 4 | -5/+25 |
|\ \ |
|
| * | | Made schema dumper recognize partial indices' where statements | Marcelo Silveira | 2012-02-09 | 2 | -2/+3 |
| * | | Added where option to add_index to support postgresql partial indices | Marcelo Silveira | 2012-02-09 | 3 | -3/+22 |
| |/ |
|
* | | fixing indentation, moving class methods together | Aaron Patterson | 2012-02-09 | 1 | -124/+124 |
* | | removing dead code | Aaron Patterson | 2012-02-09 | 1 | -7/+0 |
* | | use the pg column to cast values | Aaron Patterson | 2012-02-08 | 1 | -1/+1 |
* | | only unescape bytea after it has been read from the database | Aaron Patterson | 2012-02-07 | 2 | -6/+4 |
* | | pgcolumn knows how to typecast binary columns | Aaron Patterson | 2012-02-07 | 1 | -0/+6 |
* | | give each PG type a `type` method and decortate tz attributes | Aaron Patterson | 2012-02-07 | 1 | -12/+20 |
* | | hstores can be typecast | Aaron Patterson | 2012-02-07 | 1 | -0/+10 |
* | | columns are lazily typecast, so no more calls to `result_as_array` | Aaron Patterson | 2012-02-07 | 1 | -1/+1 |
* | | taking column width in to account when fetching decimal fields | Aaron Patterson | 2012-02-07 | 2 | -2/+42 |
* | | return early from typecasting if the value is nil | Aaron Patterson | 2012-02-07 | 1 | -1/+15 |
* | | mapping more oids | Aaron Patterson | 2012-02-07 | 1 | -1/+7 |
* | | many of the OIDs mapped and implemented | Aaron Patterson | 2012-02-07 | 2 | -1/+164 |
|/ |
|
* | delegate attribute typecasting to the column | Aaron Patterson | 2012-02-06 | 1 | -0/+15 |
* | prevents the database.yml template option from being passed to PGConn | Sean Kirby | 2012-02-06 | 1 | -1/+1 |
* | columns method doesn't have name argument | Rafael Mendonça França | 2012-02-02 | 1 | -1/+1 |
* | Remove useless argument in #columns. | Sebastian Martinez | 2012-02-02 | 4 | -4/+4 |
* | use the class method to (un)escape binary values | Aaron Patterson | 2012-02-01 | 1 | -2/+2 |
* | Fixed issue with SQLite adapter corrupting binary data | Chris Feist | 2012-01-31 | 1 | -16/+1 |
* | QueryCache will just dup an AR::Result, AR::Result can deep copy | Aaron Patterson | 2012-01-31 | 1 | -9/+15 |
* | always return the result set from select_all | Aaron Patterson | 2012-01-31 | 1 | -1/+1 |
* | made the result set object act more like an array | Aaron Patterson | 2012-01-31 | 3 | -3/+3 |
* | Merge pull request #4763 from kennyj/fix_4754 | Jon Leighton | 2012-01-31 | 1 | -1/+1 |
|\ |
|
| * | Fix GH #4754. Remove double-quote when using ANSI_QUOTES | kennyj | 2012-01-31 | 1 | -1/+1 |