aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Accidentally lost `comment` in `Column#==` and `Column#hash`Ryuta Kamizono2019-04-101-2/+4
* Remove unused `sequence_name` in `sql_for_insert`Ryuta Kamizono2019-04-102-3/+3
* There is no need to create `QueryAttribute` to just type cast a valueRyuta Kamizono2019-04-101-2/+1
* Merge pull request #35875 from Shopify/alloc-free-comparisonsRafael França2019-04-094-32/+38
|\
| * Improve == and hash methods on various schema cache structs to be allocation ...Jean Boussier2019-04-094-32/+38
* | Merge pull request #35909 from simi/alias-postgresql-adapterRyuta Kamizono2019-04-101-0/+1
|\ \
| * | Bring back postgresql_version as an alias.Josef Šimánek2019-04-091-0/+1
| |/
* / `get_database_version` is not public API [ci skip]Ryuta Kamizono2019-04-091-1/+1
|/
* Merge pull request #34800 from mqchau/mysqlCountDeleteRowInLockMatthew Draper2019-04-091-1/+3
|\
| * Wrap Mysql count of deleted rows in lock block to avoid conflict in testQuan Chau2019-04-081-1/+3
* | Merge pull request #35887 from kamipo/argument_errorRyuta Kamizono2019-04-093-6/+6
|\ \
| * | Raise `ArgumentError` for invalid `:limit` and `:precision` like as other opt...Ryuta Kamizono2019-04-073-6/+6
| |/
* | Merge pull request #35890 from kamipo/except_table_name_from_columnRyuta Kamizono2019-04-096-49/+43
|\ \
| * | Except `table_name` from column objectsRyuta Kamizono2019-04-086-49/+43
* | | When skipping duplicates in bulk insert on MySQL, avoid assigning id when not...Bob Lail2019-04-081-2/+2
|/ /
* / Fix GROUP BY with calculate longer name field to respect `table_alias_length`Ryuta Kamizono2019-04-083-6/+12
|/
* Clear query cache when truncate table(s)Ryuta Kamizono2019-04-041-1/+2
* Use `execute_batch2` rather than `execute_batch` to fix performance regressio...Ryuta Kamizono2019-04-042-2/+2
* Merge pull request #35795 from alimi/cache-database-versionEileen M. Uchitelle2019-04-0310-56/+72
|\
| * Cache database version in schema cacheAli Ibrahim2019-04-0310-56/+72
* | `bytes_margin` is only needed when `previous_packet` existsRyuta Kamizono2019-04-031-5/+2
* | Use official database name [ci skip]Ryuta Kamizono2019-04-031-1/+1
|/
* Extract `sanitize_as_sql_comment` from SQL visitor into connectionRyuta Kamizono2019-03-191-0/+4
* Don't expose internal `type_casted_binds` methodRyuta Kamizono2019-03-191-7/+7
* Tweak `truncate_tables`Ryuta Kamizono2019-03-181-17/+17
* SQLite3: Make fixture loading to bulk statementsRyuta Kamizono2019-03-174-47/+38
* Fix undefined local variable or method `discard_remaining_results'Ryuta Kamizono2019-03-171-1/+1
* Ensure `execute_batch` discards remaining resultsRyuta Kamizono2019-03-172-14/+5
* Make `truncate_tables` to bulk statementsRyuta Kamizono2019-03-176-52/+118
* Extract `truncate` and `truncate_tables` into database statementsRyuta Kamizono2019-03-175-13/+15
* Support Optimizer HintsRyuta Kamizono2019-03-163-2/+22
* Revert "Remove Marshal support from SchemaCache"Rafael Mendonça França2019-03-131-0/+11
* Schema Cache: cache table indexesKasper Timm Hansen2019-03-131-5/+15
* Merge branch 'test-remove-marshal-support-from-schema-cache'Kasper Timm Hansen2019-03-121-10/+0
|\
| * Remove Marshal support from SchemaCacheKasper Timm Hansen2019-03-121-10/+0
* | Modernize size calculation in Schema CacheKasper Timm Hansen2019-03-121-1/+1
|/
* Initialize `@default_timezone` and `@timestamp_decoder` in `add_pg_decoders`Ryuta Kamizono2019-03-131-2/+3
* Squish the deprecation messages across the codebasePrathamesh Sonpatki2019-03-111-1/+1
* PostgreSQL: Add `add_pg_encoders` and `add_pg_decoders` in `connect`Ryuta Kamizono2019-03-101-0/+2
* SQLite3: Set `busy_timeout` in `configure_connection`Ryuta Kamizono2019-03-101-2/+2
* Fix `reconnect!` to work after `disconnect!`Ryuta Kamizono2019-03-102-4/+16
* Move all Arel constructions from uniqueness validator into connection adapterRyuta Kamizono2019-03-072-4/+5
* Allow `remove_foreign_key` with both `to_table` and `options`Ryuta Kamizono2019-03-064-19/+15
* Ensure `clear_cache!` clears the prepared statements cacheRyuta Kamizono2019-03-064-26/+21
* Add insert_all to ActiveRecord models (#35077)Bob Lail2019-03-055-11/+107
* Allow `truncate` for SQLite3 adapter and add `rails db:seed:replant` (#34779)Bogdan2019-03-041-0/+4
* Deprecate mismatched collation comparison for uniquness validatorRyuta Kamizono2019-03-042-1/+15
* Merge pull request #35402 from alimi/update-ar-read-regexAaron Patterson2019-02-251-1/+1
|\
| * Update READ_QUERY regexAli Ibrahim2019-02-251-1/+1
* | Refactor `type_to_sql` to handle converting `limit` to `size` in itselfRyuta Kamizono2019-02-264-67/+60