aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* SQLite3 valid integer value should be 8 bytes (64-bit signed integer) (#28379)Ryuta Kamizono2017-12-031-0/+15
* Emulate JSON types for SQLite3 adapter (#29664)Ryuta Kamizono2017-12-034-9/+7
* `change_column_default` should be executed after type changingRyuta Kamizono2017-12-031-7/+8
* Extract duplicated index column options normalization as `options_for_index_c...Ryuta Kamizono2017-12-035-46/+34
* Refactor `length`, `order`, and `opclass` index options dumpingRyuta Kamizono2017-12-035-24/+30
* Merge pull request #31230 from dinahshi/postgresql_extract_sqlMatthew Draper2017-12-033-59/+79
|\
| * Extract sql fragment generators for alter table from PostgreSQL adapterDinah Shi2017-12-023-59/+79
* | Fix method name in `validate_constraint` doc [ci skip]yuuji.yaginuma2017-12-021-1/+1
* | Add support for invalid foreign keys in PostgresTravis Hunter2017-12-017-1/+84
* | Remove unpaired `}` [ci skip]Ryuta Kamizono2017-12-011-2/+1
* | Merge pull request #19090 from gregnavis/support-postgresql-operator-classes-...Matthew Draper2017-12-014-15/+66
|\ \
| * | Add support for PostgreSQL operator classes to add_indexGreg Navis2017-11-304-15/+66
* | | Add :nodoc: to `StatementPool` which is internal used [ci skip]Ryuta Kamizono2017-11-302-4/+2
|/ /
* | Drop mysql2 version less than 0.4.3 to guarantee fork safety (#31244)Ryuta Kamizono2017-11-281-1/+1
* | Add new error class `QueryCanceled` which will be raised when canceling state...Ryuta Kamizono2017-11-272-1/+4
* | Rename `TransactionTimeout` to more descriptive `LockWaitTimeout` (#31223)Ryuta Kamizono2017-11-272-2/+2
* | Merge pull request #31221 from matthewd/flush-idle-connectionsMatthew Draper2017-11-262-16/+66
|\ \
| * | Flush idle database connectionsMatthew Draper2017-11-262-16/+66
* | | Let rubygems handle our objection to mysql2 0.4.3Matthew Draper2017-11-261-2/+1
| |/ |/|
* | Merge pull request #30510 from yhirano55/add_nodoc_to_activerecordEileen M. Uchitelle2017-11-251-1/+1
|\ \
| * | Add :nodoc: to activerecord [ci skip]Yoshiyuki Hirano2017-09-031-1/+1
* | | Merge pull request #31173 from matthewd/connection-fork-safetyMatthew Draper2017-11-254-0/+58
|\ \ \ | |_|/ |/| |
| * | Improve AR connection fork safetyMatthew Draper2017-11-184-0/+58
* | | Merge pull request #31035 from BrentWheeldon/bmw-db-load-deadlockMatthew Draper2017-11-181-1/+2
|\ \ \
| * | | Prevent deadlocks with load interlock and DB lock.Brent Wheeldon2017-11-091-1/+2
* | | | Merge pull request #28742 from quixoten/stack_conn_poolMatthew Draper2017-11-171-6/+3
|\ \ \ \ | |_|/ / |/| | |
| * | | Fix typosDevin Christensen2017-04-131-1/+1
| * | | Improve documentation and add testDevin Christensen2017-04-131-7/+4
| * | | Switch to LIFO for the connection poolDevin Christensen2017-04-121-2/+2
* | | | Add new error class `StatementTimeout` which will be raised when statement ti...Ryuta Kamizono2017-11-132-0/+6
* | | | Raise `TransactionTimeout` when lock wait timeout exceeded for PG adapterRyuta Kamizono2017-11-111-0/+3
* | | | Add missing autoload `Type` (#31123)Ryuta Kamizono2017-11-111-1/+0
| |/ / |/| |
* | | Properly check transaction in persistenceKeenan Brock2017-11-061-1/+1
* | | [ci skip]Update the documentation about the primary key typesuginoy2017-10-292-16/+16
* | | Merge pull request #30984 from yahonda/schema_dumper_pgRyuta Kamizono2017-10-261-0/+12
|\ \ \
| * | | Implement `PostgreSQL::SchemaDumper#extensions`Yasuo Honda2017-10-251-0/+12
* | | | Merge pull request #30970 from rohitpaulk/fix-sqlite-3-index-order-dumpRafael França2017-10-251-1/+11
|\ \ \ \ | |/ / / |/| | |
| * | | Avoid using index_xinfo, only available in sqlite >= 3.8.9Paul Kuruvilla2017-10-251-9/+12
| * | | Save index order :desc to schema.rb (sqlite). Fixes #30902Paul Kuruvilla2017-10-241-2/+9
* | | | `supports_extensions?` return always true since PostgreSQL 9.1Yasuo Honda2017-10-241-9/+3
|/ / /
* | | Remove `supports_disable_referential_integrity?`Yasuo Honda2017-10-231-25/+17
* | | Remove deprecated arguments from `#verify!`Rafael Mendonça França2017-10-231-4/+1
* | | Remove deprecated argument `name` from `#indexes`Rafael Mendonça França2017-10-234-24/+4
* | | Remove deprecated method `supports_primary_key?`Rafael Mendonça França2017-10-231-5/+0
* | | Remove deprecated method `supports_migrations?`Rafael Mendonça França2017-10-231-5/+0
* | | Remove deprecated methods `initialize_schema_migrations_table` and `initializ...Rafael Mendonça França2017-10-231-10/+0
* | | Remove deprecated argument `default` from `index_name_exists?`Rafael Mendonça França2017-10-232-12/+2
* | | Remove deprecated support to `quoted_id` when typecasting an Active Record ob...Rafael Mendonça França2017-10-231-17/+0
* | | [Active Record] require => require_relativeAkira Matsuda2017-10-217-62/+62
* | | Fix longer sequence name detection for serial columns (#28339)Ryuta Kamizono2017-10-154-4/+26