Skip to content

Commit

Permalink
Merge pull request #205 from cwida/pb/kleene-star-parser
Browse files Browse the repository at this point in the history
Bug fix: allow ->* without a space
  • Loading branch information
Dtenwolde authored Nov 25, 2024
2 parents 2b8d592 + 02ff276 commit 6236d0b
Show file tree
Hide file tree
Showing 7 changed files with 354,949 additions and 449,104 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ and the [documentation page](https://duckpgq.notion.site/duckpgq/b8ac652667964f9
[![Discord](https://discordapp.com/api/guilds/1225369321077866496/widget.png?style=banner3)](https://discord.gg/8X95XHhQB7)

# Loading DuckPGQ into DuckDB
As of DuckDB v1.1.* we support loading DuckPGQ as a community extension.
```sql
install duckpgq from community;
load duckpgq;
```


For availability please see the [DuckPGQ extension availability section](https://github.com/cwida/duckpgq-extension#duckpgq-extension-availability).

Since this is a third-party extension, DuckDB must be started in `unsigned` mode to load it. The extension can be loaded with the following commands:
Expand Down
2 changes: 1 addition & 1 deletion third_party/libpg_query/grammar/grammar.y
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
%token <str> IDENT FCONST SCONST BCONST XCONST Op
%token <ival> ICONST PARAM
%token TYPECAST DOT_DOT COLON_EQUALS EQUALS_GREATER INTEGER_DIVISION POWER_OF LAMBDA_ARROW DOUBLE_ARROW
%token LESS_EQUALS GREATER_EQUALS NOT_EQUALS
%token LESS_EQUALS GREATER_EQUALS NOT_EQUALS ARROW_LEFT ARROW_BOTH

/*
* If you want to make any keyword changes, update the keyword table in
Expand Down
Loading

0 comments on commit 6236d0b

Please sign in to comment.