aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/config.example.yml
Commit message (Collapse)AuthorAgeFilesLines
* Fix tests for prepared_statements: false and queries hitting `#select_all`Prathamesh Sonpatki2016-11-191-0/+3
| | | | | | | | | | - The query needs to be executed for hitting `select_all` so made sure that query gets executed. - Also instead of changing instance variable, just add new configuration for prepared_statements: false and use it for this test. - This way we don't have to touch the internals of AR code and still disable prepared statements config for this test.
* Remove legacy mysql adapterAbdelkader Boudih2015-12-171-9/+0
|
* remove the last traces of OpenBase from our codebase. [ci skip]Yves Senn2014-11-071-6/+0
|
* 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.