Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@
[submodule "pglite/other_extensions/pg_textsearch"]
path = pglite/other_extensions/pg_textsearch
url = https://github.com/timescale/pg_textsearch/
[submodule "pglite/other_extensions/pgmq"]
path = pglite/other_extensions/pgmq
url = https://github.com/pgmq/pgmq
5 changes: 3 additions & 2 deletions pglite/other_extensions/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ SUBDIRS = \
age \
pg_uuidv7 \
pg_hashids \
pg_textsearch
pg_textsearch \
pgmq/pgmq-extension

prefix ?= /pglite
EXTENSIONS_BUILD_ROOT := /tmp/extensions/build
Expand All @@ -30,7 +31,7 @@ dist: $(addsuffix .tar.gz,$(EXTENSIONS))
mkdir -p $(ARCHIVE_DIR)
cd $(EXTENSIONS_BUILD_ROOT)/$*/$(prefix) && \
files=$$(find . -type f -o -type l | sed 's|^\./||') && \
tar -czf $(ARCHIVE_DIR)/$*.tar.gz $$files
tar -czf $(ARCHIVE_DIR)/$$(basename $*)\.tar.gz $$files

# AGE requires SIZEOF_DATUM=4 for 32-bit WASM compatibility (strips PASSEDBYVALUE from graphid)
age.tar.gz:
Expand Down
1 change: 1 addition & 0 deletions pglite/other_extensions/pgmq
Submodule pgmq added at 885251