aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* MariaDB: Remove version checking lower the 5.5.8Ryuta Kamizono2019-01-021-10/+2
* Add test case for `preventing_writes?`Ryuta Kamizono2019-01-021-1/+1
* Use high level API on `migration_context` instead of using low level API dire...Ryuta Kamizono2018-12-281-4/+2
* Deprecate passing `migrations_paths` to `connection.assume_migrated_upto_vers...Ryuta Kamizono2018-12-281-2/+8
* Merge pull request #34742 from kamipo/row_format_dynamic_by_defaultRyuta Kamizono2018-12-211-0/+18
|\
| * MySQL: `ROW_FORMAT=DYNAMIC` create table option by defaultRyuta Kamizono2018-12-191-0/+18
* | Enable `Style/RedundantBegin` cop to avoid newly adding redundant begin blockRyuta Kamizono2018-12-212-25/+21
|/
* Use `utf8mb4` charset for internal tables if the row format `DYNAMIC` by defaultRyuta Kamizono2018-12-192-10/+10
* Ensure that preventing writes is invoked before `materialize_transactions` co...Ryuta Kamizono2018-12-121-4/+2
* An empty transaction does not raise the `ReadOnlyError` if preventing writesRyuta Kamizono2018-12-113-3/+3
* An explain query does not raise the `ReadOnlyError` if preventing writesRyuta Kamizono2018-12-113-3/+3
* Don't treat begin and rollback transactions as write queriesRyuta Kamizono2018-12-113-3/+3
* Prevent write queries with prepared statements for mysql2 adapterRyuta Kamizono2018-12-111-0/+4
* Prevent write queries for `exec_query`Ryuta Kamizono2018-12-112-1/+9
* Rename error that occurs when writing on a readEileen Uchitelle2018-12-073-3/+3
* Fix join table column quoting with SQLite.Gannon McGibbon2018-12-051-0/+4
* Merge pull request #34602 from guizmaii/masterRafael França2018-12-031-1/+2
|\
| * Pass the `connection` to the `@instrumenter.instrument` method calljules Ivanic2018-12-031-1/+2
* | Address "warning: shadowing outer local variable - parts"Ryuta Kamizono2018-12-034-7/+8
|/
* Add ability to prevent writes to a databaseEileen Uchitelle2018-11-305-1/+64
* Allow spaces in postgres table namesGannon McGibbon2018-11-281-1/+1
* Merge pull request #34557 from sergioisidoro/sergio-patch-load-errorRafael França2018-11-281-2/+2
|\
| * Patch load error in case GemSpecErrorsergioisidoro2018-11-281-2/+2
* | `Mutable` helper is in `ActiveModel`Ryuta Kamizono2018-11-274-4/+4
* | Merge pull request #34520 from yahonda/bump_pg93Rafael França2018-11-262-19/+17
|\ \
| * | Bump the minimum version of PostgreSQL to 9.3Yasuo Honda2018-11-252-19/+17
* | | When running exec_query MySQL always returns ActiveRecord::ResultAlireza Bashiri2018-11-251-2/+10
|/ /
* | Merge pull request #34468 from gmcgibbon/redact_sql_in_errorsRafael França2018-11-234-41/+41
|\ \
| * | Redact SQL in errorsGannon McGibbon2018-11-224-41/+41
* | | Use squiggly heredoc to strip odd indentation in the executed SQLRyuta Kamizono2018-11-225-17/+17
|/ /
* | Fixing an issue when parsing an opclass by allowing indexed columnThomas Bianchini2018-11-211-1/+1
* | Fix typo and clarify documentationJacob Evelyn2018-11-161-3/+4
* | Merge pull request #34436 from gmcgibbon/fix_default_max_bind_length_sqliteRafael França2018-11-131-0/+6
|\ \
| * | Adjust bind length of SQLite to default (999)Gannon McGibbon2018-11-131-0/+6
* | | Add support for UNLOGGED Postgresql tablesJacob Evelyn2018-11-134-1/+36
|/ /
* | Deprecate `t.indexes = [...]` which is not by designRyuta Kamizono2018-11-091-2/+5
* | Refactor to initialize `TableDefinition` by kwargsRyuta Kamizono2018-11-092-4/+14
* | PostgreSQL: Properly quote all `Infinity` and `NaN`Ryuta Kamizono2018-11-091-4/+4
* | Add an :if_not_exists option to create_tablefatkodima2018-11-083-4/+10
* | Always add records to parent of nested transactionEugene Kenny2018-11-071-1/+1
* | Checking boundable not only `IN` clause but also `NOT IN` clauseRyuta Kamizono2018-11-031-8/+4
* | Support default expression for MySQLRyuta Kamizono2018-10-251-4/+7
* | Support expression indexes for MySQLRyuta Kamizono2018-10-252-4/+34
* | Merge pull request #34303 from kamipo/lazy_checking_boundableRafael França2018-10-241-1/+10
|\ \ | |/ |/|
| * Lazy checking whether or not values in IN clause are boundableRyuta Kamizono2018-10-241-1/+10
* | Hide PG::Connection from API docs [ci skip]Francesco Rodríguez2018-10-231-1/+1
* | MySQL 8.0.13 raises `ER_NO_REFERENCED_ROW` and `ER_ROW_IS_REFERENCED`Yasuo Honda2018-10-231-1/+3
|/
* Remove and flip `index: true` for `references` in the doc [ci skip]Ryuta Kamizono2018-10-172-8/+8
* Consistently extract checking version for all adaptersRyuta Kamizono2018-10-174-27/+29
* Refactored abstract MySQL adapter to support lazy version check.Brooke Kuhlmann2018-10-161-4/+11