Skip to content

Commit 763f4bc

Browse files
niklaskorztyt2y3
authored andcommitted
Case-sensitive enum type casts (#789)
1 parent 20c86f5 commit 763f4bc

File tree

3 files changed

+73
-3
lines changed

3 files changed

+73
-3
lines changed

src/backend/postgres/query.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ impl QueryBuilder for PostgresQueryBuilder {
4141
fn prepare_simple_expr(&self, simple_expr: &SimpleExpr, sql: &mut dyn SqlWriter) {
4242
match simple_expr {
4343
SimpleExpr::AsEnum(type_name, expr) => {
44-
let simple_expr = expr.clone().cast_as(SeaRc::clone(type_name));
44+
let simple_expr = expr.clone().cast_as_quoted(SeaRc::clone(type_name), self.quote());
4545
self.prepare_simple_expr_common(&simple_expr, sql);
4646
}
4747
_ => QueryBuilder::prepare_simple_expr_common(self, simple_expr, sql),

src/expr.rs

+34-2
Original file line numberDiff line numberDiff line change
@@ -1883,7 +1883,7 @@ impl Expr {
18831883
/// );
18841884
/// assert_eq!(
18851885
/// query.to_string(PostgresQueryBuilder),
1886-
/// r#"SELECT CAST("font_size" AS text) FROM "character""#
1886+
/// r#"SELECT CAST("font_size" AS "text") FROM "character""#
18871887
/// );
18881888
/// assert_eq!(
18891889
/// query.to_string(SqliteQueryBuilder),
@@ -1902,7 +1902,7 @@ impl Expr {
19021902
/// );
19031903
/// assert_eq!(
19041904
/// query.to_string(PostgresQueryBuilder),
1905-
/// r#"INSERT INTO "character" ("font_size") VALUES (CAST('large' AS FontSizeEnum))"#
1905+
/// r#"INSERT INTO "character" ("font_size") VALUES (CAST('large' AS "FontSizeEnum"))"#
19061906
/// );
19071907
/// assert_eq!(
19081908
/// query.to_string(SqliteQueryBuilder),
@@ -2471,6 +2471,38 @@ impl SimpleExpr {
24712471
Self::FunctionCall(func)
24722472
}
24732473

2474+
/// Express a case-sensitive `CAST AS` expression.
2475+
///
2476+
/// # Examples
2477+
///
2478+
/// ```
2479+
/// use sea_query::{tests_cfg::*, *};
2480+
///
2481+
/// let query = Query::select()
2482+
/// .expr(Expr::value("1").cast_as_quoted(Alias::new("MyType"), '"'.into()))
2483+
/// .to_owned();
2484+
///
2485+
/// assert_eq!(
2486+
/// query.to_string(MysqlQueryBuilder),
2487+
/// r#"SELECT CAST('1' AS "MyType")"#
2488+
/// );
2489+
/// assert_eq!(
2490+
/// query.to_string(PostgresQueryBuilder),
2491+
/// r#"SELECT CAST('1' AS "MyType")"#
2492+
/// );
2493+
/// assert_eq!(
2494+
/// query.to_string(SqliteQueryBuilder),
2495+
/// r#"SELECT CAST('1' AS "MyType")"#
2496+
/// );
2497+
/// ```
2498+
pub fn cast_as_quoted<T>(self, type_name: T, q: Quote) -> Self
2499+
where
2500+
T: IntoIden,
2501+
{
2502+
let func = Func::cast_as_quoted(self, type_name, q);
2503+
Self::FunctionCall(func)
2504+
}
2505+
24742506
/// Create any binary operation
24752507
///
24762508
/// # Examples

src/func.rs

+38
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,44 @@ impl Func {
464464
))
465465
}
466466

467+
/// Call `CAST` function with a case-sensitive custom type.
468+
///
469+
/// # Examples
470+
///
471+
/// ```
472+
/// use sea_query::{tests_cfg::*, *};
473+
///
474+
/// let query = Query::select()
475+
/// .expr(Func::cast_as_quoted("hello", Alias::new("MyType"), '"'.into()))
476+
/// .to_owned();
477+
///
478+
/// assert_eq!(
479+
/// query.to_string(MysqlQueryBuilder),
480+
/// r#"SELECT CAST('hello' AS "MyType")"#
481+
/// );
482+
/// assert_eq!(
483+
/// query.to_string(PostgresQueryBuilder),
484+
/// r#"SELECT CAST('hello' AS "MyType")"#
485+
/// );
486+
/// assert_eq!(
487+
/// query.to_string(SqliteQueryBuilder),
488+
/// r#"SELECT CAST('hello' AS "MyType")"#
489+
/// );
490+
/// ```
491+
pub fn cast_as_quoted<V, I>(expr: V, iden: I, q: Quote) -> FunctionCall
492+
where
493+
V: Into<SimpleExpr>,
494+
I: IntoIden,
495+
{
496+
let expr: SimpleExpr = expr.into();
497+
let mut quoted_type = String::new();
498+
iden.into_iden().prepare(&mut quoted_type, q);
499+
FunctionCall::new(Function::Cast).arg(expr.binary(
500+
BinOper::As,
501+
Expr::cust(quoted_type.as_str()),
502+
))
503+
}
504+
467505
/// Call `COALESCE` function.
468506
///
469507
/// # Examples

0 commit comments

Comments
 (0)