Skip to content

Commit 1eea957

Browse files
committed
fix: collate could be null in type definition
1 parent 95f3a67 commit 1eea957

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)