diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-09-24 10:28:06 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-09-24 10:31:23 -0700 |
commit | 9ce482da3960ee43decee41fba53b78c12c3e52c (patch) | |
tree | f7e77a4a2154a3f259fc41f5c2282a752e4ba200 /rt/docs/UPGRADING-4.2 | |
parent | 6894828ab5a66e53ad6945cc14e6cd9f9c3b67f7 (diff) |
rt 4.2.13 ticket#13852
Diffstat (limited to 'rt/docs/UPGRADING-4.2')
-rw-r--r-- | rt/docs/UPGRADING-4.2 | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/rt/docs/UPGRADING-4.2 b/rt/docs/UPGRADING-4.2 index 76aa96d15..45a000e87 100644 --- a/rt/docs/UPGRADING-4.2 +++ b/rt/docs/UPGRADING-4.2 @@ -327,11 +327,17 @@ functionality can now be implemented via C<%DatabaseExtraDSN>. C<$DatabaseRequireSSL> has been removed, and setting it will trigger an informational message that setting it is ineffective. -The full-text indexing defaults for PostgreSQL have changed; GiST is now +The full-text indexing defaults for PostgreSQL have changed; GIN is now the suggested index, as well as storing data in a separate AttachmentsIndex table. Both changes improve lookup speed. For improved search performance, you may wish to drop existing C<tsvector> -and C<GIN> indexes on C<Attachments>, and re-generate the index using +and C<GiST> indexes on C<Attachments>, and re-generate the index using C<rt-setup-fulltext-index>. +=head1 UPGRADING FROM 4.2.12 AND EARLIER + +New deployments install an C<RT_SiteConfig.pm> that includes a C<use utf8;> +to allow Unicode to be used in config. You may wish to add a C<use utf8;> to +the top of your C<RT_SiteConfig.pm> if you haven't already done so. + =cut |