Skip to content

Commit cd30f8b

Browse files
Merge pull request #2527 from taozhi8833998/fix-collate-type
fix: collate could be null in type definition
2 parents 95f3a67 + 1eea957 commit cd30f8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export interface ColumnRefItem {
108108
column: string | { expr: ValueExpr };
109109
options?: ExprList;
110110
loc?: LocationRange;
111-
collate?: { collate: CollateExpr };
111+
collate?: { collate: CollateExpr } | null;
112112
order_by?: SortDirection | null;
113113
}
114114
export interface ColumnRefExpr {

0 commit comments

Comments
 (0)