forked from launchbadge/sqlx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(citext): support postgres citext (launchbadge#2478)
* feat(citext): implement citext for postgres * feat(citext): add citext -> String conversion test * feat(citext): fix ltree -> citree * feat(citext): add citext to the setup.sql * chore: address nits to launchbadge#2478 * Rename `PgCitext` to `PgCiText` * Document when use of `PgCiText` is warranted * Document potentially surprising `PartialEq` behavior * Test that the macros consider `CITEXT` to be compatible with `String` and friends * doc: add `PgCiText` to `postgres::types` listing * chore: restore missing trailing line break to `tests/postgres/setup.sql` --------- Co-authored-by: Austin Bonander <austin@launchbadge.com>
- Loading branch information
1 parent
3c2471e
commit 56945d7
Showing
8 changed files
with
162 additions
and
3 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
use crate::types::array_compatible; | ||
use crate::{PgArgumentBuffer, PgHasArrayType, PgTypeInfo, PgValueRef, Postgres}; | ||
use sqlx_core::decode::Decode; | ||
use sqlx_core::encode::{Encode, IsNull}; | ||
use sqlx_core::error::BoxDynError; | ||
use sqlx_core::types::Type; | ||
use std::fmt; | ||
use std::fmt::{Debug, Display, Formatter}; | ||
use std::ops::Deref; | ||
use std::str::FromStr; | ||
|
||
/// Case-insensitive text (`citext`) support for Postgres. | ||
/// | ||
/// Note that SQLx considers the `citext` type to be compatible with `String` | ||
/// and its various derivatives, so direct usage of this type is generally unnecessary. | ||
/// | ||
/// However, it may be needed, for example, when binding a `citext[]` array, | ||
/// as Postgres will generally not accept a `text[]` array (mapped from `Vec<String>`) in its place. | ||
/// | ||
/// See [the Postgres manual, Appendix F, Section 10][PG.F.10] for details on using `citext`. | ||
/// | ||
/// [PG.F.10]: https://www.postgresql.org/docs/current/citext.html | ||
/// | ||
/// ### Note: Extension Required | ||
/// The `citext` extension is not enabled by default in Postgres. You will need to do so explicitly: | ||
/// | ||
/// ```ignore | ||
/// CREATE EXTENSION IF NOT EXISTS "citext"; | ||
/// ``` | ||
/// | ||
/// ### Note: `PartialEq` is Case-Sensitive | ||
/// This type derives `PartialEq` which forwards to the implementation on `String`, which | ||
/// is case-sensitive. This impl exists mainly for testing. | ||
/// | ||
/// To properly emulate the case-insensitivity of `citext` would require use of locale-aware | ||
/// functions in `libc`, and even then would require querying the locale of the database server | ||
/// and setting it locally, which is unsafe. | ||
#[derive(Clone, Debug, Default, PartialEq)] | ||
pub struct PgCiText(pub String); | ||
|
||
impl Type<Postgres> for PgCiText { | ||
fn type_info() -> PgTypeInfo { | ||
// Since `citext` is enabled by an extension, it does not have a stable OID. | ||
PgTypeInfo::with_name("citext") | ||
} | ||
|
||
fn compatible(ty: &PgTypeInfo) -> bool { | ||
<&str as Type<Postgres>>::compatible(ty) | ||
} | ||
} | ||
|
||
impl Deref for PgCiText { | ||
type Target = str; | ||
|
||
fn deref(&self) -> &Self::Target { | ||
self.0.as_str() | ||
} | ||
} | ||
|
||
impl From<String> for PgCiText { | ||
fn from(value: String) -> Self { | ||
Self(value) | ||
} | ||
} | ||
|
||
impl From<PgCiText> for String { | ||
fn from(value: PgCiText) -> Self { | ||
value.0 | ||
} | ||
} | ||
|
||
impl FromStr for PgCiText { | ||
type Err = core::convert::Infallible; | ||
|
||
fn from_str(s: &str) -> Result<Self, Self::Err> { | ||
Ok(PgCiText(s.parse()?)) | ||
} | ||
} | ||
|
||
impl Display for PgCiText { | ||
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { | ||
f.write_str(&self.0) | ||
} | ||
} | ||
|
||
impl PgHasArrayType for PgCiText { | ||
fn array_type_info() -> PgTypeInfo { | ||
PgTypeInfo::with_name("_citext") | ||
} | ||
|
||
fn array_compatible(ty: &PgTypeInfo) -> bool { | ||
array_compatible::<&str>(ty) | ||
} | ||
} | ||
|
||
impl Encode<'_, Postgres> for PgCiText { | ||
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull { | ||
<&str as Encode<Postgres>>::encode(&**self, buf) | ||
} | ||
} | ||
|
||
impl Decode<'_, Postgres> for PgCiText { | ||
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError> { | ||
Ok(PgCiText(value.as_str()?.to_owned())) | ||
} | ||
} |
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
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