index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
lib
/
active_record
/
connection_adapters
Commit message (
Expand
)
Author
Age
Files
Lines
*
Clear schema cache when a table is created/dropped/renamed
Ryuta Kamizono
2019-06-13
4
-0
/
+11
*
Allow column name with function (e.g. `length(title)`) as safe SQL string
Ryuta Kamizono
2019-06-10
4
-8
/
+32
*
Allow `column_name AS alias` as safe SQL string
Ryuta Kamizono
2019-06-10
4
-0
/
+4
*
Refactor `disallow_raw_sql!` to avoid `split(/\s*,\s*/)` to order args
Ryuta Kamizono
2019-06-09
4
-19
/
+54
*
Merge pull request #36420 from kamipo/quoted_identifier_regex
Ryuta Kamizono
2019-06-06
4
-5
/
+105
|
\
|
*
Allow quoted identifier string as safe SQL string
Ryuta Kamizono
2019-06-06
4
-5
/
+105
*
|
Move schema cache from connection to pool
eileencodes
2019-06-05
4
-5
/
+33
|
/
*
Fix sqlite3 collation parsing when using decimal columns.
Martin Schuster
2019-06-04
1
-2
/
+2
*
Merge pull request #36384 from guigs/fix-invalid-schema-when-pk-column-has-co...
Ryuta Kamizono
2019-06-03
1
-1
/
+1
|
\
|
*
Fix invalid schema dump when primary key column has a comment
Guilherme Goettems Schneider
2019-06-03
1
-1
/
+1
*
|
Refactor `create_table`'s options separation
Ryuta Kamizono
2019-06-03
2
-12
/
+11
|
/
*
Fix table comment also being applied to the primary key column
Guilherme Goettems Schneider
2019-05-31
1
-1
/
+1
*
`:datetime` and `:time` columns allows `:precision` option [ci skip]
Ryuta Kamizono
2019-05-28
1
-2
/
+3
*
Use WeakRef to avoid leaking connection pools
John Hawthorn
2019-05-27
1
-11
/
+21
*
Put all `explain` methods into `DatabaseStatements` module
Ryuta Kamizono
2019-05-22
4
-18
/
+14
*
Merge pull request #36296 from jhawthorn/dont_fear_the_reaper
Aaron Patterson
2019-05-18
1
-7
/
+25
|
\
|
*
Use a single thread for all ConnectionPool Reapers
John Hawthorn
2019-05-17
1
-7
/
+25
*
|
Remove SQLite version support caveats [ci skip]
Eugene Kenny
2019-05-12
3
-5
/
+3
|
/
*
Remove ignored_sql from SQLCounter by adding "TRANSACTION" to log name
Yasuo Honda
2019-05-08
4
-12
/
+12
*
Should attempt `committed!`/`rolledback!` to all enrolled records in the tran...
Ryuta Kamizono
2019-05-07
1
-4
/
+12
*
Merge pull request #35998 from itsWill/add_documentation_for_add_index
Eileen M. Uchitelle
2019-04-19
1
-0
/
+20
|
\
|
*
Document algorithm: concurrent options for PostgreSQL [ci skip]
Guilherme Mansur
2019-04-16
1
-0
/
+20
*
|
Merge pull request #35946 from alimi/cache-full-mysql-database-version
Kasper Timm Hansen
2019-04-16
3
-5
/
+14
|
\
\
|
|
/
|
/
|
|
*
Make changes per PR feedback
Ali Ibrahim
2019-04-12
2
-9
/
+3
|
*
Cache full MySQL version in schema cache
Ali Ibrahim
2019-04-11
3
-6
/
+21
*
|
make change_column_comment and change_table_comment invertible
Yoshiyuki Kinjo
2019-04-15
3
-6
/
+21
*
|
use PostgreSQL's bulk_alter_table implementation
Yoshiyuki Kinjo
2019-04-13
3
-41
/
+26
*
|
Refactor around sql_type metadata and column
Ryuta Kamizono
2019-04-12
4
-33
/
+35
*
|
Merge pull request #35922 from michaelglass/move-sqlite-3-database-statements...
Rafael França
2019-04-11
2
-80
/
+80
|
\
\
|
|
/
|
/
|
|
*
moves sqlite3 methods that mirror Abstract::DatabaseStatements into Sqlite3::...
Michael Glass
2019-04-10
2
-80
/
+80
*
|
Adding type option example to the documentation [ci skip] (#35917)
Roberto Miranda
2019-04-10
1
-0
/
+1
|
/
*
Accidentally lost `comment` in `Column#==` and `Column#hash`
Ryuta Kamizono
2019-04-10
1
-2
/
+4
*
Remove unused `sequence_name` in `sql_for_insert`
Ryuta Kamizono
2019-04-10
2
-3
/
+3
*
There is no need to create `QueryAttribute` to just type cast a value
Ryuta Kamizono
2019-04-10
1
-2
/
+1
*
Merge pull request #35875 from Shopify/alloc-free-comparisons
Rafael França
2019-04-09
4
-32
/
+38
|
\
|
*
Improve == and hash methods on various schema cache structs to be allocation ...
Jean Boussier
2019-04-09
4
-32
/
+38
*
|
Merge pull request #35909 from simi/alias-postgresql-adapter
Ryuta Kamizono
2019-04-10
1
-0
/
+1
|
\
\
|
*
|
Bring back postgresql_version as an alias.
Josef Šimánek
2019-04-09
1
-0
/
+1
|
|
/
*
/
`get_database_version` is not public API [ci skip]
Ryuta Kamizono
2019-04-09
1
-1
/
+1
|
/
*
Merge pull request #34800 from mqchau/mysqlCountDeleteRowInLock
Matthew Draper
2019-04-09
1
-1
/
+3
|
\
|
*
Wrap Mysql count of deleted rows in lock block to avoid conflict in test
Quan Chau
2019-04-08
1
-1
/
+3
*
|
Merge pull request #35887 from kamipo/argument_error
Ryuta Kamizono
2019-04-09
3
-6
/
+6
|
\
\
|
*
|
Raise `ArgumentError` for invalid `:limit` and `:precision` like as other opt...
Ryuta Kamizono
2019-04-07
3
-6
/
+6
|
|
/
*
|
Merge pull request #35890 from kamipo/except_table_name_from_column
Ryuta Kamizono
2019-04-09
6
-49
/
+43
|
\
\
|
*
|
Except `table_name` from column objects
Ryuta Kamizono
2019-04-08
6
-49
/
+43
*
|
|
When skipping duplicates in bulk insert on MySQL, avoid assigning id when not...
Bob Lail
2019-04-08
1
-2
/
+2
|
/
/
*
/
Fix GROUP BY with calculate longer name field to respect `table_alias_length`
Ryuta Kamizono
2019-04-08
3
-6
/
+12
|
/
*
Clear query cache when truncate table(s)
Ryuta Kamizono
2019-04-04
1
-1
/
+2
*
Use `execute_batch2` rather than `execute_batch` to fix performance regressio...
Ryuta Kamizono
2019-04-04
2
-2
/
+2
*
Merge pull request #35795 from alimi/cache-database-version
Eileen M. Uchitelle
2019-04-03
10
-56
/
+72
|
\
[next]