Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fix: allow ->* without a space #205

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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