From f2784905403e8eb93d62d1958a7bad5eaa1f77a6 Mon Sep 17 00:00:00 2001 From: Nidhi Bhammar Date: Tue, 8 Sep 2020 12:04:58 +0530 Subject: [PATCH] Update the description of GIN and GiST indexes in the documentation. Fixes #5734 --- docs/en_US/index_dialog.rst | 8 ++++---- docs/en_US/release_notes_4_26.rst | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/en_US/index_dialog.rst b/docs/en_US/index_dialog.rst index 5e005740e..e463d9b58 100644 --- a/docs/en_US/index_dialog.rst +++ b/docs/en_US/index_dialog.rst @@ -39,10 +39,10 @@ Use the fields in the *Definition* tab to define the index: * Select *hash* to create a hash index. A hash index may improve performance when managing simple equality comparisons. * Select *gist* to create a GiST index. A GiST index may improve + performance when managing two-dimensional geometric data types and + nearest-neighbor searches. + * Select *gin* to create a GIN index. A GIN index may improve performance when managing values with more than one key. - * Select *gin* to create a GIN index. A GIN index may improve performance - when managing two-dimensional geometric data types and nearest-neighbor - searches. * Select *spgist* to create a space-partitioned GiST index. A SP-GiST index may improve performance when managing non-balanced data structures. * Select *brin* to create a BRIN index. A BRIN index may improve @@ -108,4 +108,4 @@ the values in the *code* column of the *distributors* table. * Click the *Info* button (i) to access online help. * Click the *Save* button to save work. * Click the *Cancel* button to exit without saving work. -* Click the *Reset* button to restore configuration parameters. \ No newline at end of file +* Click the *Reset* button to restore configuration parameters. diff --git a/docs/en_US/release_notes_4_26.rst b/docs/en_US/release_notes_4_26.rst index 2a775484d..7409e954f 100644 --- a/docs/en_US/release_notes_4_26.rst +++ b/docs/en_US/release_notes_4_26.rst @@ -28,6 +28,7 @@ Bug fixes | `Issue #5426 `_ - Adjusted the height of jobstep code block to use maximum space. | `Issue #5652 `_ - Modified the 'Commit' and 'Rollback' query tool button icons. | `Issue #5722 `_ - Ensure that the user should be able to drop the database even if it is connected. +| `Issue #5734 `_ - Update the description of GIN and GiST indexes in the documentation. | `Issue #5746 `_ - Fixed an issue where --load-server does not allow loading connections that use pg_services. | `Issue #5748 `_ - Fixed incorrect reverse engineering SQL for Foreign key when creating a table. | `Issue #5751 `_ - Enable the 'Configure' and 'View log' menu option when the server taking longer than usual time to start.