Skip to content

Commit

Permalink
Merge pull request #1987 from LYP951018/cast_expr_type_fix
Browse files Browse the repository at this point in the history
Change the type definition of `Cast.expr` from `Expr` to `ExpressionValue`
  • Loading branch information
taozhi8833998 authored Jul 4, 2024
2 parents a479256 + 92a6d29 commit c609d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export interface Case {
export interface Cast {
type: "cast";
keyword: "cast";
expr: Expr;
expr: ExpressionValue;
symbol: "as";
target: {
dataType: string;
Expand Down

0 comments on commit c609d7f

Please sign in to comment.