Skip to content

Commit

Permalink
Stamp beta5, use new patches version
Browse files Browse the repository at this point in the history
  • Loading branch information
akorotkov committed May 13, 2024
1 parent a775d6f commit 6c1a634
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .pgtags
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
15: patches15_21
16: patches16_23
15: patches15_22
16: patches16_24
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ See [our dockerhub](https://hub.docker.com/r/orioledb/orioledb) for details.

Before building and installing OrioleDB, one should ensure to have the following:

* [PostgreSQL with extensibility patches](https://github.com/orioledb/postgres): [15 (tag: patches15_19)](https://github.com/orioledb/postgres/tree/patches15_19) or [16 (tag: patches16_21)](https://github.com/orioledb/postgres/tree/patches16_21);
* [PostgreSQL with extensibility patches](https://github.com/orioledb/postgres): [15 (tag: patches15_22)](https://github.com/orioledb/postgres/tree/patches15_22) or [16 (tag: patches16_24)](https://github.com/orioledb/postgres/tree/patches16_24);
* for versions before 16 ``./config`` script should be run with `--with-icu`
* Development package of libzstd;
* python 3.5+ with testgres package.
Expand Down
6 changes: 3 additions & 3 deletions doc/dev_quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cd postgres-patches15/
### Checkout to required patch tag:
Check required postgres patch version in [.pgtags](../.pgtags) or [README.md](../README.md#build-from-source) files. Because documentation can become outdated.
```bash
git checkout patches15_18
git checkout patches15_22
```

### Enable Valgrind support in PostgreSQL code (optional)
Expand Down Expand Up @@ -113,7 +113,7 @@ cd postgres-patches15/
### Checkout to required patch tag:
Check required postgres patch version in [.pgtags](../.pgtags) or [README.md](../README.md#build-from-source) files. Because documentation can become outdated.
```bash
git checkout patches15_18
git checkout patches15_22
```

### Configure and build
Expand Down Expand Up @@ -205,7 +205,7 @@ cd postgres-patches15/
### Checkout to required patch tag:
Check required postgres patch version in [.pgtags](../.pgtags) or [README.md](../README.md#build-from-source) files. Because documentation can become outdated.
```bash
git checkout patches15_18
git checkout patches15_22
```

### Enable Valgrind support in PostgreSQL code (optional)
Expand Down
2 changes: 1 addition & 1 deletion doc/docker_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Connect to the server via psql:

You should expect a similar psql message:
```
psql (15.5 OrioleDB public beta 4 PGTAG=patches15_19 alpine:3.17+clang build:2023-11-01T22:43:27+00:00)
psql (15.5 OrioleDB public beta 5 PGTAG=patches15_22 alpine:3.17+clang build:2023-11-01T22:43:27+00:00)
Type "help" for help.
postgres=#
Expand Down
2 changes: 1 addition & 1 deletion expected/tableam.out
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CREATE EXTENSION orioledb;
SELECT orioledb_version();
orioledb_version
------------------------
OrioleDB public beta 4
OrioleDB public beta 5
(1 row)

SELECT translate(orioledb_commit_hash(), '0123456789abcdef', '################');
Expand Down
2 changes: 1 addition & 1 deletion include/orioledb.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "utils/rel.h"
#include "utils/relcache.h"

#define ORIOLEDB_VERSION "OrioleDB public beta 4"
#define ORIOLEDB_VERSION "OrioleDB public beta 5"
#define ORIOLEDB_BINARY_VERSION 4
#define ORIOLEDB_DATA_DIR "orioledb_data"
#define ORIOLEDB_UNDO_DIR "orioledb_undo"
Expand Down

0 comments on commit 6c1a634

Please sign in to comment.