Skip to content

Commit 1f9da8a

Browse files
committed
Chore: Use pgJDBC 42.7.8 across the board
1 parent 9d6fe2f commit 1f9da8a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/integrate/debezium/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ cat > Dockerfile <<EOF
157157
FROM debezium/connect
158158
USER root:root
159159
COPY ./confluentinc-kafka-connect-jdbc-10.6.3/ /kafka/connect/
160-
RUN cd /kafka/libs && curl -sO https://jdbc.postgresql.org/download/postgresql-42.5.4.jar
160+
RUN cd /kafka/libs && curl -sO https://jdbc.postgresql.org/download/postgresql-42.7.8.jar
161161
USER 1001
162162
EOF
163163
sudo docker build -t cratedb-connect-debezium .

docs/integrate/nifi/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Set up a connection pool to CrateDB:
2020
| -------------------------- |----------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
2121
| Database Connection URL | The JDBC connection string pointing to CrateDB | `jdbc:postgresql://<cratedb-host>:5432/doc?sslmode=verify-full&sslrootcert=/path/to/ca.pem` |
2222
| Database Driver Class Name | The PostgreSQL JDBC driver class name | `org.postgresql.Driver` |
23-
| Database Driver Location(s)| [Download](https://jdbc.postgresql.org/download/) the latest PostgreSQL JDBC driver and place it on the file system of the NiFi host | `${nifi.home}/lib/postgresql-42.7.x.jar` |
23+
| Database Driver Location(s)| [Download](https://jdbc.postgresql.org/download/) the latest PostgreSQL JDBC driver and place it on the file system of the NiFi host | `${nifi.home}/lib/postgresql-42.7.8.jar` |
2424
| Database User | The CrateDB user name | |
2525
| Password | The password of your CrateDB user | |
2626

docs/integrate/spark/usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ This usage guide will work with a single-node Apache Spark installation running
6767
```
6868

6969
4. Finally, as CrateDB communicates with Spark via JDBC, download the [Postgres JDBC driver](https://jdbc.postgresql.org/download/) in your working directory.
70-
In this usage guide, we use the `postgresql-42.6.0.jar` driver.
70+
In this usage guide, we use the `postgresql-42.7.8.jar` driver.
7171

7272

7373
## Data analysis
@@ -80,7 +80,7 @@ You can load data from CrateDB into a PySpark DataFrame using the following code
8080

8181
```python
8282
from pyspark.sql import SparkSession
83-
spark = SparkSession.builder.appName("cratedb_test").config("spark.jars", "postgresql-42.6.0.jar").getOrCreate()
83+
spark = SparkSession.builder.appName("cratedb_test").config("spark.jars", "postgresql-42.7.8.jar").getOrCreate()
8484
df = spark.read.format("jdbc")
8585
.option("url", "jdbc:postgresql://host:port/crate?sslmode=require")
8686
.option("driver", "org.postgresql.Driver")

docs/integrate/tableau/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ In this usage guide, you will:
3737
:link: https://community.cratedb.com/t/using-cratedb-with-tableau/1192
3838
:link-type: url
3939
How to install the latest PostgreSQL JDBC driver (e.g.
40-
`postgresql-42.7.1.jar` or newer) for using Tableau.
40+
`postgresql-42.7.8.jar` or newer) for using Tableau.
4141
:::
4242

4343
:::{grid-item-card} Repository: CrateDB Tableau Connector

0 commit comments

Comments
 (0)