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
/
test
/
cases
/
adapters
/
mysql2
Commit message (
Expand
)
Author
Age
Files
Lines
*
These limits are now implicit
Matthew Draper
2015-12-18
2
-2
/
+2
*
Allow users to pass flags from database.yml
Stephen Blackstone
2015-12-15
1
-0
/
+7
*
Fix test failure in `adapters/mysql/active_schema_test.rb`
Ryuta Kamizono
2015-11-20
1
-1
/
+1
*
Rename 'key' to 'lock_id' or 'lock_name' for advisory locking
Sam Davies
2015-11-18
1
-9
/
+9
*
Deprecate `#table_exists?`, `#tables` and passing arguments to `#talbes`
yui-knk
2015-11-09
2
-8
/
+8
*
No need `MysqlDouble` and `MysqlDouble.reset_column_information`
Ryuta Kamizono
2015-11-05
1
-12
/
+6
*
Add test_float_limits to mysql2
yui-knk
2015-11-03
1
-0
/
+37
*
Merge pull request #22122 from samphilipd/sam/manual_locking_on_schema_migrat...
Sean Griffin
2015-10-30
1
-0
/
+28
|
\
|
*
Use advisory locks to prevent concurrent migrations
Sam Davies
2015-10-30
1
-0
/
+28
*
|
Fix test failures caused by #19501
Sean Griffin
2015-10-29
1
-0
/
+1
*
|
tests, no every adapter supports "connection.version"
Yves Senn
2015-10-29
1
-11
/
+12
|
/
*
Merge pull request #21932 from kamipo/add_stored_procedure_test_in_mysql2
Sean Griffin
2015-10-20
1
-0
/
+29
|
\
|
*
Add stored procedure test in mysql2
Ryuta Kamizono
2015-10-15
1
-0
/
+29
*
|
Fix to correctly schema dump the `tinyblob`
Ryuta Kamizono
2015-10-15
1
-1
/
+1
|
/
*
Refactor `table_exists?` in AbstractMysqlAdapter
Ryuta Kamizono
2015-09-20
1
-8
/
+0
*
Merge pull request #17696 from kamipo/unsigned_integer_support
Jeremy Daer
2015-09-19
1
-2
/
+37
|
\
|
*
Add `unsigned` types for numeric data types in MySQL
Ryuta Kamizono
2015-09-18
1
-0
/
+13
|
*
Add `unsigned` support for numeric data types in MySQL
Ryuta Kamizono
2015-09-18
1
-2
/
+24
*
|
Should test both mysql adapters
Ryuta Kamizono
2015-09-20
1
-10
/
+8
|
/
*
Add a native JSON data type support in MySQL
Ryuta Kamizono
2015-08-18
1
-0
/
+172
*
use `assert_not` instead of `refute` as mentioned in our guides.
Yves Senn
2015-08-13
1
-1
/
+1
*
Remove @connection instance variable only when defined
Yasuo Honda
2015-07-26
1
-2
/
+2
*
Ensure that microsecond precision is only used for version of mysql that supp...
Jori Hardman
2015-07-20
1
-0
/
+21
*
make it possible to run AR tests with bin/test
Yves Senn
2015-06-11
14
-75
/
+70
*
If specify `strict: :default` explicitly, do not set sql_mode.
Ryuta Kamizono
2015-05-26
1
-0
/
+9
*
More exercise the create index sql tests
Ryuta Kamizono
2015-05-04
1
-0
/
+37
*
Merge pull request #17569 from kamipo/dump_table_options
Rafael Mendonça França
2015-05-03
1
-0
/
+42
|
\
|
*
Correctly dump `:options` on `create_table` for MySQL
Ryuta Kamizono
2015-05-03
1
-0
/
+42
*
|
Remove unused require
Ryuta Kamizono
2015-05-03
1
-1
/
+0
|
/
*
Use `use_transactional_tests` in Active Record
Prem Sichanugrist
2015-04-10
1
-1
/
+1
*
Merge pull request #17574 from kamipo/charset_collation_options
Jeremy Kemper
2015-04-07
1
-0
/
+54
|
\
|
*
Add `:charset` and `:collation` options support for MySQL string and text col...
Ryuta Kamizono
2015-03-06
1
-0
/
+54
*
|
Closes rails/rails#18864: Renaming transactional fixtures to transactional tests
Brandon Weiss
2015-03-16
3
-3
/
+3
|
/
*
Add `SchemaMigration.create_table` support any unicode charsets for MySQL.
Ryuta Kamizono
2015-02-26
1
-2
/
+2
*
Prefer `drop_table if_exists: true` over raw SQL
Ryuta Kamizono
2015-02-18
1
-1
/
+1
*
prefer `drop_table if_exists: true` over raw SQL.
Yves Senn
2015-02-18
1
-1
/
+1
*
Extract `DateTimePrecisionTest`
Ryuta Kamizono
2015-02-13
1
-84
/
+0
*
Refactor microsecond precision to be database agnostic
Sean Griffin
2015-02-10
2
-14
/
+4
*
Respect the database default charset for `schema_migrations` table.
Ryuta Kamizono
2015-02-08
1
-4
/
+12
*
tests, use `drop_table if_exists: true` in our test suite.
Yves Senn
2015-01-20
1
-1
/
+1
*
Merge pull request #18067 from kamipo/format_datetime_string_according_to_pre...
Rafael Mendonça França
2015-01-02
1
-0
/
+87
|
\
|
*
Format the datetime string according to the precision of the datetime field.
Ryuta Kamizono
2015-01-02
1
-0
/
+17
|
*
Allow precision option for MySQL datetimes.
Ryuta Kamizono
2015-01-02
1
-0
/
+70
|
/
*
Stop relying on columns for type information in mysql2 casting tests
Sean Griffin
2015-01-01
1
-4
/
+2
*
Go through normal `where` logic when preloading associations
Sean Griffin
2014-12-26
1
-1
/
+1
*
Fix undesirable RangeError by Type::Integer. Add Type::UnsignedInteger.
Ryuta Kamizono
2014-12-12
1
-0
/
+30
*
Failure to rollback t.timestamps when within a change_table migration
noam
2014-12-03
1
-1
/
+1
*
Pass symbol as an argument instead of a block
Erik Michaels-Ober
2014-11-29
3
-6
/
+4
*
synchronize code and docs for `timestamps` and `add_timestamps`.
Yves Senn
2014-11-20
1
-1
/
+1
*
Build fix when running in isolation
Arun Agrawal
2014-11-14
1
-0
/
+1
[next]