ClickHouse/docs/en/engines/database-engines/postgresql.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

144 lines
5.0 KiB
Markdown
Raw Normal View History

2021-02-25 22:57:20 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/engines/database-engines/postgresql
sidebar_position: 40
sidebar_label: PostgreSQL
2021-02-25 22:57:20 +00:00
---
2022-06-02 10:55:18 +00:00
# PostgreSQL
2021-02-25 22:57:20 +00:00
2021-03-14 17:11:26 +00:00
Allows to connect to databases on a remote [PostgreSQL](https://www.postgresql.org) server. Supports read and write operations (`SELECT` and `INSERT` queries) to exchange data between ClickHouse and PostgreSQL.
2021-02-25 22:57:20 +00:00
Gives the real-time access to table list and table structure from remote PostgreSQL with the help of `SHOW TABLES` and `DESCRIBE TABLE` queries.
2021-02-27 00:01:02 +00:00
Supports table structure modifications (`ALTER TABLE ... ADD|DROP COLUMN`). If `use_table_cache` parameter (see the Engine Parameters below) it set to `1`, the table structure is cached and not checked for being modified, but can be updated with `DETACH` and `ATTACH` queries.
2021-02-25 22:57:20 +00:00
## Creating a Database {#creating-a-database}
``` sql
2021-07-29 15:20:55 +00:00
CREATE DATABASE test_database
ENGINE = PostgreSQL('host:port', 'database', 'user', 'password'[, `schema`, `use_table_cache`]);
2021-02-25 22:57:20 +00:00
```
**Engine Parameters**
- `host:port` — PostgreSQL server address.
- `database` — Remote database name.
- `user` — PostgreSQL user.
- `password` — User password.
- `schema` — PostgreSQL schema.
- `use_table_cache` — Defines if the database table structure is cached or not. Optional. Default value: `0`.
2021-02-25 22:57:20 +00:00
## Data Types Support {#data_types-support}
2022-08-03 13:01:24 +00:00
| PostgreSQL | ClickHouse |
|------------------|--------------------------------------------------------------|
| DATE | [Date](../../sql-reference/data-types/date.md) |
| TIMESTAMP | [DateTime](../../sql-reference/data-types/datetime.md) |
| REAL | [Float32](../../sql-reference/data-types/float.md) |
| DOUBLE | [Float64](../../sql-reference/data-types/float.md) |
| DECIMAL, NUMERIC | [Decimal](../../sql-reference/data-types/decimal.md) |
| SMALLINT | [Int16](../../sql-reference/data-types/int-uint.md) |
| INTEGER | [Int32](../../sql-reference/data-types/int-uint.md) |
| BIGINT | [Int64](../../sql-reference/data-types/int-uint.md) |
| SERIAL | [UInt32](../../sql-reference/data-types/int-uint.md) |
| BIGSERIAL | [UInt64](../../sql-reference/data-types/int-uint.md) |
| TEXT, CHAR | [String](../../sql-reference/data-types/string.md) |
| INTEGER | Nullable([Int32](../../sql-reference/data-types/int-uint.md))|
| ARRAY | [Array](../../sql-reference/data-types/array.md) |
2021-02-25 22:57:20 +00:00
## Examples of Use {#examples-of-use}
Database in ClickHouse, exchanging data with the PostgreSQL server:
``` sql
2021-07-29 15:20:55 +00:00
CREATE DATABASE test_database
2022-06-16 06:42:51 +00:00
ENGINE = PostgreSQL('postgres1:5432', 'test_database', 'postgres', 'mysecretpassword', 'schema_name',1);
2021-02-25 22:57:20 +00:00
```
``` sql
2021-02-25 22:57:20 +00:00
SHOW DATABASES;
```
``` text
2021-02-25 22:57:20 +00:00
┌─name──────────┐
│ default │
│ test_database │
│ system │
└───────────────┘
```
``` sql
2021-02-25 22:57:20 +00:00
SHOW TABLES FROM test_database;
```
``` text
2021-02-25 22:57:20 +00:00
┌─name───────┐
│ test_table │
└────────────┘
```
Reading data from the PostgreSQL table:
``` sql
2021-02-25 22:57:20 +00:00
SELECT * FROM test_database.test_table;
```
``` text
2021-02-25 22:57:20 +00:00
┌─id─┬─value─┐
│ 1 │ 2 │
└────┴───────┘
```
Writing data to the PostgreSQL table:
``` sql
2021-02-25 22:57:20 +00:00
INSERT INTO test_database.test_table VALUES (3,4);
SELECT * FROM test_database.test_table;
```
``` text
2021-02-25 22:57:20 +00:00
┌─int_id─┬─value─┐
│ 1 │ 2 │
│ 3 │ 4 │
└────────┴───────┘
```
2021-07-29 15:20:55 +00:00
Consider the table structure was modified in PostgreSQL:
2021-02-25 22:57:20 +00:00
``` sql
2021-02-25 22:57:20 +00:00
postgre> ALTER TABLE test_table ADD COLUMN data Text
```
As the `use_table_cache` parameter was set to `1` when the database was created, the table structure in ClickHouse was cached and therefore not modified:
``` sql
2021-02-25 22:57:20 +00:00
DESCRIBE TABLE test_database.test_table;
```
``` text
2021-02-25 22:57:20 +00:00
┌─name───┬─type──────────────┐
│ id │ Nullable(Integer) │
│ value │ Nullable(Integer) │
└────────┴───────────────────┘
```
After detaching the table and attaching it again, the structure was updated:
``` sql
2021-02-25 22:57:20 +00:00
DETACH TABLE test_database.test_table;
ATTACH TABLE test_database.test_table;
DESCRIBE TABLE test_database.test_table;
```
``` text
2021-02-25 22:57:20 +00:00
┌─name───┬─type──────────────┐
│ id │ Nullable(Integer) │
│ value │ Nullable(Integer) │
│ data │ Nullable(String) │
└────────┴───────────────────┘
```
## Related content
- Blog: [ClickHouse and PostgreSQL - a match made in data heaven - part 1](https://clickhouse.com/blog/migrating-data-between-clickhouse-postgres)
2023-04-10 14:23:00 +00:00
- Blog: [ClickHouse and PostgreSQL - a Match Made in Data Heaven - part 2](https://clickhouse.com/blog/migrating-data-between-clickhouse-postgres-part-2)