We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b7f136 commit e0434bdCopy full SHA for e0434bd
1 file changed
index.d.ts
@@ -49,10 +49,14 @@ export interface InsertReplaceValue {
49
type: 'expr_list';
50
value: any[];
51
}
52
+export interface Star {
53
+ type: 'star';
54
+ value: '*';
55
+}
56
export interface AggrFunc {
57
type: 'aggr_func';
58
name: string;
- args: ColumnRef | AggrFunc | null;
59
+ args: ColumnRef | AggrFunc | Star | null;
60
61
export interface Column {
62
expr: ColumnRef | AggrFunc;
0 commit comments