diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-15 17:09:41 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-15 17:09:41 -0400 |
commit | fbf6175fc11ee2a15bec539455c3b32295fe98bb (patch) | |
tree | 87a5de74ffa5d095d5eae2b0dd6e054c85012d07 | |
parent | 795a341e285ad5b705eae4624fb1b09ab22455ef (diff) | |
parent | 35855a47eaa8a910a8d90ff9ce5031bf805b520a (diff) | |
download | sqlalchemy-fbf6175fc11ee2a15bec539455c3b32295fe98bb.tar.gz |
Merge branch 'master' into rel_0_9
-rw-r--r-- | README.unittests.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/README.unittests.rst b/README.unittests.rst index 1ab4e9536..99ee1d997 100644 --- a/README.unittests.rst +++ b/README.unittests.rst @@ -250,6 +250,12 @@ Additional steps specific to individual databases are as follows:: requires using a test.cfg configuration file as the cmd.exe shell won't properly pass the URL arguments into the nose test runner. + POSTGRESQL: Full-text search configuration should be set to English, else + several tests of ``.match()`` will fail. This can be set (if it isn't so + already) with: + + ALTER DATABASE test SET default_text_search_config = 'pg_catalog.english' + CONFIGURING LOGGING ------------------- |