Skip to content

Commit f63be58

Browse files
committed
Update for Pg14 support
1 parent 3b0766e commit f63be58

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

ADVANCED-INSTALL.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,13 @@ Another option to try.
194194
cargo clean
195195
```
196196

197+
If you're doing the above, you probably should remove the `Cargo.lock`
198+
file while you're at it.
199+
200+
```bash
201+
rm Cargo.lock
202+
```
203+
197204

198205
## Non-standard In Docker
199206

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgdd"
3-
version = "0.4.0-dev"
3+
version = "0.4.0-rc3"
44
edition = "2018"
55
description = "In-database (PostgreSQL) data dictionary providing database introspection via standard SQL query syntax."
66

@@ -15,6 +15,7 @@ pg10 = ["pgx/pg10"]
1515
pg11 = ["pgx/pg11"]
1616
pg12 = ["pgx/pg12"]
1717
pg13 = ["pgx/pg13"]
18+
pg14 = ["pgx/pg14"]
1819
pg_test = []
1920

2021
[dependencies]

build/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ LOGDIR=${BASE}/target/logs
2323
ARTIFACTDIR=${BASE}/target/artifacts
2424
PGXVERSION=0.2.0-beta.1
2525

26-
PG_VERS=("pg10" "pg11" "pg12" "pg13")
27-
#PG_VERS=("pg13")
26+
PG_VERS=("pg10" "pg11" "pg12" "pg13" "pg14")
27+
#PG_VERS=("pg14")
2828

2929
echo $BASE
3030
echo $VERSION

pgdd.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
comment = 'An in-database data dictionary providing database introspection via standard SQL query syntax. Developed using pgx (https://github.com/zombodb/pgx).'
2-
default_version = '0.4.0.rc3'
2+
default_version = '0.4.0-rc3'
33
module_pathname = '$libdir/pgdd'
44
relocatable = false
55
schema = dd

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fn columns(
7777
{
7878
#[cfg(any(feature = "pg10", feature="pg11"))]
7979
let query = include_str!("sql/function_query/columns-pre-12.sql");
80-
#[cfg(any(feature = "pg12", feature="pg13"))]
80+
#[cfg(any(feature = "pg12", feature="pg13", feature="pg14"))]
8181
let query = include_str!("sql/function_query/columns-12.sql");
8282

8383
let mut results = Vec::new();

0 commit comments

Comments
 (0)