File: README.md

package info (click to toggle)
pg-roaringbitmap 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,816 kB
  • sloc: ansic: 26,773; sql: 3,213; sh: 43; makefile: 15
file content (20 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Building the extension with docker

This directory contains an example showing you how to build and use the extension with the official postgres docker
image.

## Usage

```shell
docker compose up
```

After the container is started the extension is created automatically.

### Verify working extension

To verify that the extension is working correctly you can execute the following statment

```sql
SELECT roaringbitmap('{1,2,3}')
```