Skip to content

Commit

Permalink
Merge pull request #96 from 0xflotus/patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
pashkinelfe authored Sep 24, 2021
2 parents 1a4d4b8 + 2c794bc commit 31680b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on the `GIN` access methods code.

- Slow ranking. It is need position information about lexems to ranking. `GIN`
index doesn't store positions of lexems. So after index scan we need additional
heap scan to retreive lexems positions.
heap scan to retrieve lexems positions.
- Slow phrase search with `GIN` index. This problem relates with previous
problem. It is need position information to perform phrase search.
- Slow ordering by timestamp. `GIN` index can't store some related information
Expand Down Expand Up @@ -239,7 +239,7 @@ SELECT * FROM query

For type: `anyarray`

This operator class stores `anyarrray` elements with length of the array.
This operator class stores `anyarray` elements with length of the array.
Supports operators `&&`, `@>`, `<@`, `=`, `%` operators. Supports ordering by `<=>` operator.
For example we have the table:

Expand Down Expand Up @@ -278,7 +278,7 @@ SELECT * FROM test_array WHERE i && '{1}' ORDER BY i <=> '{1}' ASC;

For type: `anyarray`

This operator class stores `anyarrray` elements with any supported by module
This operator class stores `anyarray` elements with any supported by module
field.

## Todo
Expand Down

0 comments on commit 31680b1

Please sign in to comment.