Skip to content

Instantly share code, notes, and snippets.

@uuhnaut69
Last active November 1, 2020 04:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uuhnaut69/52119efa3d9fe1fc774823eafc963c62 to your computer and use it in GitHub Desktop.
Save uuhnaut69/52119efa3d9fe1fc774823eafc963c62 to your computer and use it in GitHub Desktop.

postgres-roaring-bitmap-extension-installation-note

A note about installtion roaring bitmap extension for Postgres. This tutorial using for Postgres App

Installation

  • Install Postgres App (ver 10, 11, 12)

  • Go to directory Postgres App location (The url maybe difference depend on your installation by homebrew or using Postgres App)

/Applications/Postgres.app/Contents/Versions/10/lib
  • Set the export path as shown below: export PATH="$PATH:/Applications/Postgres.app/Contents/Versions/10/bin"

  • Install Roaring Bitmap Extension via command:

git clone https://github.com/ChenHuajun/pg_roaringbitmap \
&& cd pg_roaringbitmap \
&& make && make install \
&& cd .. \
&& rm -rf pg_roaringbitmap

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment