Skip to content

Commit 0dd375c

Browse files
committed
Fix parsing of non-postgres data-types
1 parent 90c133b commit 0dd375c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser.pegjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7009,7 +7009,7 @@ array_data_type
70097009
return head;
70107010
}
70117011
}
7012-
/ !postgres with_time_zone_data_type
7012+
/ !postgres x:with_time_zone_data_type { return x; }
70137013

70147014
array_bounds
70157015
= "[" bounds:(__ empty __) "]" {

0 commit comments

Comments
 (0)