aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/config.example.yml
Commit message (Collapse)AuthorAgeFilesLines
* MySQL: set connection collation along with the charsetJeremy Kemper2014-08-301-0/+2
| | | | | | | | | | Sets the connection collation to the database collation configured in database.yml. Otherwise, `SET NAMES utf8mb4` will use the default collation for that charset (utf8mb4_general_ci) when you may have chosen a different collation, like utf8mb4_unicode_ci. This only applies to literal string comparisons, not column values, so it is unlikely to affect you.
* Remove code related to adapter which are no longer in repoArun Agrawal2014-05-161-30/+0
| | | | As we have remove code for these adapters so no need to have tasks
* Simulated & actual (manual/skipped) PostgreSQL auto-reconnection tests.Steve Jorgensen2012-07-161-0/+2
|
* To support ActiveRecord unit tests for IBM DB2Yasuo Honda2011-10-021-0/+2
|
* more oracle fixesAaron Patterson2011-06-061-1/+1
|
* updating configs for oracleAaron Patterson2011-06-061-13/+13
|
* Refactor Active Record test connection setup. Please see the ↵Jon Leighton2011-06-041-0/+136
RUNNING_UNIT_TESTS file for details, but essentially you can now configure things in test/config.yml. You can also run tests directly via the command line, e.g. ruby path/to/test.rb (no rake needed, uses default db connection from test/config.yml). This will help us fix the CI by enabling us to isolate the different Rails versions to different databases.