Skip to content

fix: small errors #96

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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