aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* Enable `Layout/EmptyLinesAroundAccessModifier` copRyuta Kamizono2019-06-134-6/+0
* Allow column name with function (e.g. `length(title)`) as safe SQL stringRyuta Kamizono2019-06-101-2/+8
* Allow `column_name AS alias` as safe SQL stringRyuta Kamizono2019-06-101-0/+1
* Refactor `disallow_raw_sql!` to avoid `split(/\s*,\s*/)` to order argsRyuta Kamizono2019-06-091-5/+14
* Merge pull request #36420 from kamipo/quoted_identifier_regexRyuta Kamizono2019-06-061-0/+37
|\
| * Allow quoted identifier string as safe SQL stringRyuta Kamizono2019-06-061-0/+37
* | Move schema cache from connection to pooleileencodes2019-06-051-1/+21
|/
* Merge pull request #36384 from guigs/fix-invalid-schema-when-pk-column-has-co...Ryuta Kamizono2019-06-031-1/+1
|\
| * Fix invalid schema dump when primary key column has a commentGuilherme Goettems Schneider2019-06-031-1/+1
* | Refactor `create_table`'s options separationRyuta Kamizono2019-06-032-12/+11
|/
* Fix table comment also being applied to the primary key columnGuilherme Goettems Schneider2019-05-311-1/+1
* `:datetime` and `:time` columns allows `:precision` option [ci skip]Ryuta Kamizono2019-05-281-2/+3
* Use WeakRef to avoid leaking connection poolsJohn Hawthorn2019-05-271-11/+21
* Merge pull request #36296 from jhawthorn/dont_fear_the_reaperAaron Patterson2019-05-181-7/+25
|\
| * Use a single thread for all ConnectionPool ReapersJohn Hawthorn2019-05-171-7/+25
* | Remove SQLite version support caveats [ci skip]Eugene Kenny2019-05-122-3/+1
|/
* Remove ignored_sql from SQLCounter by adding "TRANSACTION" to log nameYasuo Honda2019-05-081-3/+3
* Should attempt `committed!`/`rolledback!` to all enrolled records in the tran...Ryuta Kamizono2019-05-071-4/+12
* Document algorithm: concurrent options for PostgreSQL [ci skip]Guilherme Mansur2019-04-161-0/+20
* make change_column_comment and change_table_comment invertibleYoshiyuki Kinjo2019-04-151-2/+13
* use PostgreSQL's bulk_alter_table implementationYoshiyuki Kinjo2019-04-131-0/+25
* Adding type option example to the documentation [ci skip] (#35917)Roberto Miranda2019-04-101-0/+1
* Remove unused `sequence_name` in `sql_for_insert`Ryuta Kamizono2019-04-101-2/+2
* There is no need to create `QueryAttribute` to just type cast a valueRyuta Kamizono2019-04-101-2/+1
* Merge pull request #35887 from kamipo/argument_errorRyuta Kamizono2019-04-091-1/+1
|\
| * Raise `ArgumentError` for invalid `:limit` and `:precision` like as other opt...Ryuta Kamizono2019-04-071-1/+1
* | Fix GROUP BY with calculate longer name field to respect `table_alias_length`Ryuta Kamizono2019-04-081-4/+8
|/
* Clear query cache when truncate table(s)Ryuta Kamizono2019-04-041-1/+2
* Merge pull request #35795 from alimi/cache-database-versionEileen M. Uchitelle2019-04-031-0/+1
|\
| * Cache database version in schema cacheAli Ibrahim2019-04-031-0/+1
* | 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-171-34/+30
* Ensure `execute_batch` discards remaining resultsRyuta Kamizono2019-03-171-2/+0
* Make `truncate_tables` to bulk statementsRyuta Kamizono2019-03-171-9/+35
* Extract `truncate` and `truncate_tables` into database statementsRyuta Kamizono2019-03-171-1/+5
* Squish the deprecation messages across the codebasePrathamesh Sonpatki2019-03-111-1/+1
* Allow `remove_foreign_key` with both `to_table` and `options`Ryuta Kamizono2019-03-062-16/+12
* Add insert_all to ActiveRecord models (#35077)Bob Lail2019-03-051-11/+11
* Fix prepared statements caching to be enabled even when query caching is enabledRyuta Kamizono2019-02-262-12/+19
* minor grammar fix [ci skip]Shivam Jain2019-02-241-1/+1
* Address "warning: in `column': the last argument was passed as a single Hash"Ryuta Kamizono2019-02-212-4/+4
* Merge pull request #35297 from yhara/fix-ar-connection-handler-leakRyuta Kamizono2019-02-161-7/+11
|\
| * Fix possible memory leak of ConnectionHandlerYutaka HARA2019-02-161-7/+11
|/
* Properly handle cached queries with too many bind parametersMatthew Dunbar2019-02-141-0/+6
* Add `remove_foreign_key` for `change_table`Ryuta Kamizono2019-02-111-0/+11
* SQLite3: Implement `add_foreign_key` and `remove_foreign_key`Ryuta Kamizono2019-02-112-3/+3
* More exercise table name prefix and suffix testsRyuta Kamizono2019-02-113-7/+11