-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Add Support For Postgres Full Text Search tsvector Data Type #2727
Closed
Closed
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
7cc0566
WIP: Add Postgres TsVector And TsQuery Types #729,#2705
anshap1719 b6a93ca
WIP: Add Initial Decoding For TsVector #729,#2705
anshap1719 a2578ed
WIP: Add Link To TsVector Binary Data Format Information #2705
anshap1719 b603365
WIP: Add Initial Encoding For TsVector #729,#2705
anshap1719 b98a3eb
WIP: Remove Unimplemented TsQuery Definitions #2705
anshap1719 c4b2274
Revert "WIP: Remove Unimplemented TsQuery Definitions #2705"
anshap1719 6abc12f
WIP: Add Support For Decoding And Encoding TsQuery #2705
anshap1719 612a452
WIP: Add Missing Exports For TsQuery #2705
anshap1719 8071cac
WIP: Fix Build Issues, Add Tests For TsVector #729,#2705
anshap1719 032f8ba
Remove Feature Flag For Postgres Full Text Search Data Types #729,#2705
anshap1719 8166072
Update Type For Pg Argument Buffer #729,#2705
anshap1719 1ce2f7d
Run cargo fmt
anshap1719 bf67dfa
Add Support For Weights In Word Positions #729,#2705
anshap1719 65a8267
Fix Clippy Lint Warning #729,#2705
anshap1719 5ac77d0
Add Handling For Whitespace Inside TSVector Words #729,#2705
anshap1719 a85c27f
Remove Incomplete TSQuery Implementation #729,#2705
anshap1719 570216b
Add Proper Handling For Escaped And Non-Escaped Single Quotes In TSVe…
anshap1719 8e8c0f1
Remove All TSQuery Related DB Type Info Declarations #729,#2705
anshap1719 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -234,6 +234,8 @@ mod mac_address; | |
#[cfg(feature = "bit-vec")] | ||
mod bit_vec; | ||
|
||
mod ts_vector; | ||
|
||
pub use array::PgHasArrayType; | ||
pub use citext::PgCiText; | ||
pub use interval::PgInterval; | ||
|
@@ -251,6 +253,8 @@ pub use range::PgRange; | |
#[cfg(any(feature = "chrono", feature = "time"))] | ||
pub use time_tz::PgTimeTz; | ||
|
||
pub use ts_vector::TsVector; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A listing should also be added to the table at line 23 above. |
||
|
||
// used in derive(Type) for `struct` | ||
// but the interface is not considered part of the public API | ||
#[doc(hidden)] | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If
Lexeme
andLexemeMeta
are meant to be visible, this needs to bepub
so their documentation gets rendered (I wouldn't reexport them here since it would be out of context).