cwida / duckpgq-extension

DuckDB extension that adds support for SQL/PGQ
https://duckpgq.notion.site/b8ac652667964f958bfada1c3e53f1bb?v=3b47a8d44bdf4e0c8b503bf23f1b76f2
MIT License
86 stars 7 forks source link

Merge with v0.10.1 #108

Closed Dtenwolde closed 8 months ago

Dtenwolde commented 8 months ago

DuckDB has released a new bug fix release, so this extension and https://github.com/cwida/duckdb-pgq need to be updated to v0.10.1

Dtenwolde commented 8 months ago

Fixed with https://github.com/cwida/duckdb-pgq/commit/817b9c6681810827774038c25d63989c60772e6e and https://github.com/cwida/duckpgq-extension/commit/4212f63640c6fb45687483c4c89cfa0b17bd362c

For future releases:

cd duckdb-pgq
git checkout main
git fetch --tags upstream
git merge <latest_version>

Fix any merge conflicts

git add <fixed merges>

Generate the parser

python scripts/generate_flex.py
python scripts/generate_grammar.py

Build debug & release

cd ..
make clean
make debug GEN=ninja
make GEN=ninja
./build/debug/unittest --test-dir ../../../ test/sql/*