Skip to content
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

Include CASE WHEN expression starter #294

Merged
merged 3 commits into from
Nov 9, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
28 changes: 28 additions & 0 deletions dialect/mysql/select_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,34 @@ func TestSelect(t *testing.T) {
sm.Where(mysql.Quote("id").In(mysql.Arg(100, 200, 300))),
),
},
"case with else": {
ExpectedSQL: "SELECT id, name, (CASE WHEN (`id` = '1') THEN 'A' ELSE 'B' END) AS `C` FROM users",
Query: mysql.Select(
sm.Columns(
"id",
"name",
mysql.Case().
When(mysql.Quote("id").EQ(mysql.S("1")), mysql.S("A")).
Else(mysql.S("B")).
As("C"),
),
sm.From("users"),
),
},
"case without else": {
ExpectedSQL: "SELECT id, name, (CASE WHEN (`id` = '1') THEN 'A' END) AS `C` FROM users",
Query: mysql.Select(
sm.Columns(
"id",
"name",
mysql.Case().
When(mysql.Quote("id").EQ(mysql.S("1")), mysql.S("A")).
End().
As("C"),
),
sm.From("users"),
),
},
"select distinct": {
ExpectedSQL: "SELECT DISTINCT id, name FROM users WHERE (`id` IN (?, ?, ?))",
ExpectedArgs: []any{100, 200, 300},
Expand Down
6 changes: 6 additions & 0 deletions dialect/mysql/starters.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,9 @@ func Raw(query string, args ...any) Expression {
func Cast(exp bob.Expression, typname string) Expression {
return bmod.Cast(exp, typname)
}

// SQL: CASE WHEN a THEN b ELSE c END
// Go: mysql.Case().When("a", "b").Else("c")
func Case() expr.CaseChain[Expression, Expression] {
return expr.NewCase[Expression, Expression]()
}
28 changes: 28 additions & 0 deletions dialect/psql/select_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,34 @@ func TestSelect(t *testing.T) {
sm.Where(psql.Quote("id").In(psql.Arg(100, 200, 300))),
),
},
"case with else": {
ExpectedSQL: `SELECT id, name, (CASE WHEN (id = '1') THEN 'A' ELSE 'B' END) AS "C" FROM users`,
Query: psql.Select(
sm.Columns(
"id",
"name",
psql.Case().
When(psql.Quote("id").EQ(psql.S("1")), psql.S("A")).
Else(psql.S("B")).
As("C"),
),
sm.From("users"),
),
},
"case without else": {
ExpectedSQL: `SELECT id, name, (CASE WHEN (id = '1') THEN 'A' END) AS "C" FROM users`,
Query: psql.Select(
sm.Columns(
"id",
"name",
psql.Case().
When(psql.Quote("id").EQ(psql.S("1")), psql.S("A")).
End().
As("C"),
),
sm.From("users"),
),
},
"select distinct": {
ExpectedSQL: "SELECT DISTINCT id, name FROM users WHERE (id IN ($1, $2, $3))",
ExpectedArgs: []any{100, 200, 300},
Expand Down
6 changes: 6 additions & 0 deletions dialect/psql/starters.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,9 @@ func Raw(query string, args ...any) Expression {
func Cast(exp bob.Expression, typname string) Expression {
return bmod.Cast(exp, typname)
}

// SQL: CASE WHEN a THEN b ELSE c END
// Go: psql.Case().When("a", "b").Else("c")
func Case() expr.CaseChain[Expression, Expression] {
return expr.NewCase[Expression, Expression]()
}
28 changes: 28 additions & 0 deletions dialect/sqlite/select_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,34 @@ func TestSelect(t *testing.T) {
sm.Where(sqlite.Quote("id").In(sqlite.Arg(100, 200, 300))),
),
},
"case with else": {
ExpectedSQL: `SELECT id, name, (CASE WHEN ("id" = '1') THEN 'A' ELSE 'B' END) AS "C" FROM users`,
Query: sqlite.Select(
sm.Columns(
"id",
"name",
sqlite.Case().
When(sqlite.Quote("id").EQ(sqlite.S("1")), sqlite.S("A")).
Else(sqlite.S("B")).
As("C"),
),
sm.From("users"),
),
},
"case without else": {
ExpectedSQL: `SELECT id, name, (CASE WHEN ("id" = '1') THEN 'A' END) AS "C" FROM users`,
Query: sqlite.Select(
sm.Columns(
"id",
"name",
sqlite.Case().
When(sqlite.Quote("id").EQ(sqlite.S("1")), sqlite.S("A")).
End().
As("C"),
),
sm.From("users"),
),
},
"select distinct": {
ExpectedSQL: `SELECT DISTINCT id, name FROM users WHERE ("id" IN (?1, ?2, ?3))`,
ExpectedArgs: []any{100, 200, 300},
Expand Down
6 changes: 6 additions & 0 deletions dialect/sqlite/starters.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,9 @@ func Raw(query string, args ...any) Expression {
func Cast(exp bob.Expression, typname string) Expression {
return bmod.Cast(exp, typname)
}

// SQL: CASE WHEN a THEN b ELSE c END
// Go: sqlite.Case().When("a", "b").Else("c")
func Case() expr.CaseChain[Expression, Expression] {
return expr.NewCase[Expression, Expression]()
}
83 changes: 83 additions & 0 deletions expr/case.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
package expr

import (
"context"
"errors"
"io"

"github.com/stephenafamo/bob"
)

type (
caseExpr struct {
whens []when
elseExpr bob.Expression
}
when struct {
condition bob.Expression
then bob.Expression
}
)

func (c caseExpr) WriteSQL(ctx context.Context, w io.Writer, d bob.Dialect, start int) ([]any, error) {
var args []any

if len(c.whens) == 0 {
return nil, errors.New("case must have at least one when expression")
}

w.Write([]byte("CASE"))
for _, when := range c.whens {
w.Write([]byte(" WHEN "))
whenArgs, err := when.condition.WriteSQL(ctx, w, d, start+len(args))
if err != nil {
return nil, err
}
args = append(args, whenArgs...)

w.Write([]byte(" THEN "))
thenArgs, err := when.then.WriteSQL(ctx, w, d, start+len(args))
if err != nil {
return nil, err
}
args = append(args, thenArgs...)
}

if c.elseExpr != nil {
w.Write([]byte(" ELSE "))
elseArgs, err := c.elseExpr.WriteSQL(ctx, w, d, start+len(args))
if err != nil {
return nil, err
}
args = append(args, elseArgs...)
}
w.Write([]byte(" END"))

return args, nil
}

type CaseChain[T bob.Expression, B builder[T]] func() caseExpr

func NewCase[T bob.Expression, B builder[T]]() CaseChain[T, B] {
return CaseChain[T, B](func() caseExpr { return caseExpr{} })
}

func (cc CaseChain[T, B]) WriteSQL(ctx context.Context, w io.Writer, d bob.Dialect, start int) ([]any, error) {
return cc().WriteSQL(ctx, w, d, start)
}

func (cc CaseChain[T, B]) When(condition, then bob.Expression) CaseChain[T, B] {
c := cc()
c.whens = append(c.whens, when{condition: condition, then: then})
return CaseChain[T, B](func() caseExpr { return c })
}

func (cc CaseChain[T, B]) Else(then bob.Expression) T {
c := cc()
c.elseExpr = then
return X[T, B](c)
}

func (cc CaseChain[T, B]) End() T {
return X[T, B](cc())
}
Loading