aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Remove `DEFAULT NULL` for primary key column to support MySQL 5.7.3Yasuo Honda2013-12-101-1/+1
* fix pg warnings on geometric typesAaron Patterson2013-12-051-10/+23
* Use the right type_mapRafael Mendonça França2013-12-052-5/+3
* make the type_map per connection. fixes #13182Aaron Patterson2013-12-042-12/+17
* `connection.type_to_sql` returns a `String` for unmapped types.Yves Senn2013-12-031-1/+1
* Currently, we clear query_cache in cache block finish, even if we may already...Vipul A M2013-12-031-1/+1
* Merge pull request #13111 from akshay-vishnoi/typoCarlos Antonio da Silva2013-11-301-1/+1
|\
| * Typo fixes [ci skip]Akshay Vishnoi2013-11-301-1/+1
* | Remove unused variableRafael Mendonça França2013-11-291-1/+1
|/
* Merge pull request #13099 from kamipo/remove_case_sensitive_equality_operatorCarlos Antonio da Silva2013-11-291-4/+0
|\
| * Remove `DatabaseStatements#case_sensitive_equality_operator`. It has been dep...Ryuta Kamizono2013-11-291-4/+0
* | Merge pull request #13100 from akshay-vishnoi/f-refactorCarlos Antonio da Silva2013-11-291-3/+8
|\ \ | |/ |/|
| * #type_cast - improve performance & readabilityAkshay Vishnoi2013-11-291-3/+8
* | fix mysql version check in rename_indexCody Cutrer2013-11-281-1/+1
* | implement rename_index natively for MySQL > 5.7Cody Cutrer2013-11-281-0/+8
* | `rename_index`: add the new index before removing the old one.Yves Senn2013-11-261-2/+2
|/
* Drop unused param `should_be_quoted` to `PostgreSQLColumn#array_to_string`Vipul A M2013-11-171-1/+1
* Merge pull request #12779 from dougbarth/dont_swallow_exceptions_during_trans...Aaron Patterson2013-11-152-10/+0
|\
| * Don't swallow exceptions in transctional statementsDoug Barth2013-11-052-10/+0
* | Merge pull request #12832 from vipulnsward/move_schema_creationYves Senn2013-11-142-78/+84
|\ \
| * | Move `SchemaCreation` to its own file instead of `AbstractAdapter`.Vipul A M2013-11-122-78/+84
* | | Remove the unused, undocumented SQLite3Adapter#supports_count_distinct?Ben Woosley2013-11-121-5/+0
* | | Drop a sqlite_version check because we only support SQLite 3.6.16 or newer.Ben Woosley2013-11-122-7/+1
* | | Unifies mysql and mysql2 casting of booleans.Yves Senn2013-11-112-6/+6
* | | autoload ChangeColumnDefinition (Fixes #12835)Anton Kalyaev2013-11-111-0/+1
* | | Change array check for better aesthetics / reading the codeCarlos Antonio da Silva2013-11-091-1/+1
* | | Document the bind returnRafael Mendonça França2013-11-091-0/+3
* | | Avoid shot circuit return.Rafael Mendonça França2013-11-091-8/+20
* | | Don't use Active Support where we don't need toRafael Mendonça França2013-11-093-3/+3
* | | log bind variables after they were type casted.Yves Senn2013-11-093-10/+16
|/ /
* / add autoload :TransactionState to fix Marshal.load issuesJason Ayre2013-11-071-0/+1
|/
* ask the fixture set for the sql statementsAaron Patterson2013-11-041-1/+5
* fix code typo in `MysqlAdapter` .Closes #12647.Yves Senn2013-10-301-1/+1
* Merge pull request #10664 from aderyabin/docpatchYves Senn2013-10-291-1/+1
|\
| * Fix doc in Postgres database creationAndrey Deryabin2013-06-251-1/+1
* | Remove confusing generated-code commentaryJeremy Kemper2013-10-281-4/+4
* | Add a note about ensuring the version is right for the adapter (since you mig...David Heinemeier Hansson2013-10-271-1/+1
* | cast json values on write to be consistent with reading from the db.Severin Schoepke2013-10-251-0/+4
* | `ActiveRecord::Store` works together with PG `hstore` columns.Yves Senn2013-10-252-0/+12
* | Escape the parentheses in the default function regexpRafael Mendonça França2013-10-211-1/+1
* | Remove `default_primary_key_type` and extract contains of `native_database_t...Vipul A M2013-10-141-18/+16
* | Merge pull request #11833 from vipulnsward/remove_autoincrementRafael Mendonça França2013-10-141-10/+1
|\ \
| * | Remove sqlite specific`supports_autoincrement?` which always defaults to trueVipul A M2013-08-101-10/+1
* | | Extract a function to determine if the default value is a functionRafael Mendonça França2013-10-141-1/+5
* | | Push default_function to superclass to avoid method checkRafael Mendonça França2013-10-142-14/+17
* | | log the statement name along with the SQLAaron Patterson2013-10-042-6/+7
* | | log every sql statement, even when they errorAaron Patterson2013-10-041-25/+25
* | | prepare the statement inside the begin / rescue blockAaron Patterson2013-10-041-4/+4
* | | wrap logging around the actual query call itself.Aaron Patterson2013-10-042-50/+50
* | | extract adapter savepoint implementations into `abstract/savepoints.rb`.Yves Senn2013-09-306-46/+27