ClickHouse/tests/integration/test_postgresql_database_engine/test.py

404 lines
14 KiB
Python
Raw Normal View History

2020-12-21 19:20:56 +00:00
import pytest
import psycopg2
from helpers.cluster import ClickHouseCluster
from helpers.test_tools import assert_eq_with_retry
from helpers.postgres_utility import get_postgres_conn
2020-12-21 19:20:56 +00:00
from psycopg2.extensions import ISOLATION_LEVEL_AUTOCOMMIT
cluster = ClickHouseCluster(__file__)
node1 = cluster.add_instance(
2023-06-08 18:30:34 +00:00
"node1", main_configs=["configs/named_collections.xml"], user_configs=["configs/users.xml"], with_postgres=True
)
2020-12-21 19:20:56 +00:00
postgres_table_template = """
2022-01-21 17:03:48 +00:00
CREATE TABLE {} (
2020-12-21 19:20:56 +00:00
id Integer NOT NULL, value Integer, PRIMARY KEY (id))
"""
2022-01-21 17:03:48 +00:00
postgres_drop_table_template = """
DROP TABLE {}
"""
2020-12-21 19:20:56 +00:00
def create_postgres_db(cursor, name):
cursor.execute("CREATE DATABASE {}".format(name))
2020-12-21 19:20:56 +00:00
def create_postgres_table(cursor, table_name):
# database was specified in connection string
cursor.execute(postgres_table_template.format(table_name))
2022-01-21 17:03:48 +00:00
def drop_postgres_table(cursor, table_name):
# database was specified in connection string
cursor.execute(postgres_drop_table_template.format(table_name))
2020-12-21 19:20:56 +00:00
2020-12-21 19:20:56 +00:00
@pytest.fixture(scope="module")
def started_cluster():
try:
cluster.start()
conn = get_postgres_conn(cluster.postgres_ip, cluster.postgres_port)
2020-12-21 19:20:56 +00:00
cursor = conn.cursor()
create_postgres_db(cursor, "postgres_database")
2020-12-21 19:20:56 +00:00
yield cluster
finally:
cluster.shutdown()
def test_postgres_database_engine_with_postgres_ddl(started_cluster):
# connect to database as well
2022-06-29 15:56:29 +00:00
conn = get_postgres_conn(
started_cluster.postgres_ip, started_cluster.postgres_port, database=True
)
2020-12-21 19:20:56 +00:00
cursor = conn.cursor()
node1.query(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL('postgres1:5432', 'postgres_database', 'postgres', 'mysecretpassword')"
)
assert "postgres_database" in node1.query("SHOW DATABASES")
2020-12-21 19:20:56 +00:00
create_postgres_table(cursor, "test_table")
assert "test_table" in node1.query("SHOW TABLES FROM postgres_database")
2020-12-21 19:20:56 +00:00
cursor.execute("ALTER TABLE test_table ADD COLUMN data Text")
assert "data" in node1.query(
"SELECT name FROM system.columns WHERE table = 'test_table' AND database = 'postgres_database'"
)
2020-12-21 19:20:56 +00:00
cursor.execute("ALTER TABLE test_table DROP COLUMN data")
assert "data" not in node1.query(
"SELECT name FROM system.columns WHERE table = 'test_table' AND database = 'postgres_database'"
)
2020-12-21 19:20:56 +00:00
node1.query("DROP DATABASE postgres_database")
assert "postgres_database" not in node1.query("SHOW DATABASES")
2020-12-21 19:20:56 +00:00
drop_postgres_table(cursor, "test_table")
2022-01-21 17:03:48 +00:00
2020-12-21 19:20:56 +00:00
def test_postgresql_database_engine_with_clickhouse_ddl(started_cluster):
2022-06-29 15:56:29 +00:00
conn = get_postgres_conn(
started_cluster.postgres_ip, started_cluster.postgres_port, database=True
)
2020-12-21 19:20:56 +00:00
cursor = conn.cursor()
node1.query(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL('postgres1:5432', 'postgres_database', 'postgres', 'mysecretpassword')"
)
2020-12-21 19:20:56 +00:00
create_postgres_table(cursor, "test_table")
assert "test_table" in node1.query("SHOW TABLES FROM postgres_database")
2020-12-21 19:20:56 +00:00
node1.query("DROP TABLE postgres_database.test_table")
assert "test_table" not in node1.query("SHOW TABLES FROM postgres_database")
2020-12-21 19:20:56 +00:00
node1.query("ATTACH TABLE postgres_database.test_table")
assert "test_table" in node1.query("SHOW TABLES FROM postgres_database")
2020-12-21 19:20:56 +00:00
node1.query("DETACH TABLE postgres_database.test_table")
assert "test_table" not in node1.query("SHOW TABLES FROM postgres_database")
2020-12-21 19:20:56 +00:00
node1.query("ATTACH TABLE postgres_database.test_table")
assert "test_table" in node1.query("SHOW TABLES FROM postgres_database")
2020-12-21 19:20:56 +00:00
node1.query("DROP DATABASE postgres_database")
assert "postgres_database" not in node1.query("SHOW DATABASES")
2020-12-21 19:20:56 +00:00
drop_postgres_table(cursor, "test_table")
2022-01-21 17:03:48 +00:00
2020-12-21 19:20:56 +00:00
def test_postgresql_database_engine_queries(started_cluster):
2022-06-29 15:56:29 +00:00
conn = get_postgres_conn(
started_cluster.postgres_ip, started_cluster.postgres_port, database=True
)
2020-12-21 19:20:56 +00:00
cursor = conn.cursor()
node1.query(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL('postgres1:5432', 'postgres_database', 'postgres', 'mysecretpassword')"
)
2020-12-21 19:20:56 +00:00
create_postgres_table(cursor, "test_table")
2022-06-29 15:56:29 +00:00
assert (
node1.query("SELECT count() FROM postgres_database.test_table").rstrip() == "0"
)
2020-12-21 19:20:56 +00:00
node1.query(
"INSERT INTO postgres_database.test_table SELECT number, number from numbers(10000)"
)
assert (
2022-06-29 15:56:29 +00:00
node1.query("SELECT count() FROM postgres_database.test_table").rstrip()
== "10000"
)
2020-12-21 19:20:56 +00:00
drop_postgres_table(cursor, "test_table")
assert "test_table" not in node1.query("SHOW TABLES FROM postgres_database")
2020-12-26 19:38:10 +00:00
node1.query("DROP DATABASE postgres_database")
assert "postgres_database" not in node1.query("SHOW DATABASES")
2020-12-26 19:38:10 +00:00
def test_get_create_table_query_with_multidim_arrays(started_cluster):
2022-06-29 15:56:29 +00:00
conn = get_postgres_conn(
started_cluster.postgres_ip, started_cluster.postgres_port, database=True
)
cursor = conn.cursor()
node1.query(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL('postgres1:5432', 'postgres_database', 'postgres', 'mysecretpassword')"
)
cursor.execute(
"""
2022-01-21 17:03:48 +00:00
CREATE TABLE array_columns (
b Integer[][][] NOT NULL,
c Integer[][][]
)"""
)
node1.query("DETACH TABLE postgres_database.array_columns")
node1.query("ATTACH TABLE postgres_database.array_columns")
node1.query(
"INSERT INTO postgres_database.array_columns "
"VALUES ("
"[[[1, 1], [1, 1]], [[3, 3], [3, 3]], [[4, 4], [5, 5]]], "
"[[[1, NULL], [NULL, 1]], [[NULL, NULL], [NULL, NULL]], [[4, 4], [5, 5]]] "
")"
)
result = node1.query(
"""
SELECT * FROM postgres_database.array_columns"""
)
expected = (
"[[[1,1],[1,1]],[[3,3],[3,3]],[[4,4],[5,5]]]\t"
"[[[1,NULL],[NULL,1]],[[NULL,NULL],[NULL,NULL]],[[4,4],[5,5]]]\n"
)
assert result == expected
node1.query("DROP DATABASE postgres_database")
assert "postgres_database" not in node1.query("SHOW DATABASES")
drop_postgres_table(cursor, "array_columns")
2020-12-26 19:38:10 +00:00
def test_postgresql_database_engine_table_cache(started_cluster):
2022-06-29 15:56:29 +00:00
conn = get_postgres_conn(
started_cluster.postgres_ip, started_cluster.postgres_port, database=True
)
2020-12-26 19:38:10 +00:00
cursor = conn.cursor()
node1.query(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL('postgres1:5432', 'postgres_database', 'postgres', 'mysecretpassword', '', 1)"
)
2020-12-26 19:38:10 +00:00
create_postgres_table(cursor, "test_table")
assert (
node1.query("DESCRIBE TABLE postgres_database.test_table").rstrip()
== "id\tInt32\t\t\t\t\t\nvalue\tNullable(Int32)"
)
2020-12-26 19:38:10 +00:00
cursor.execute("ALTER TABLE test_table ADD COLUMN data Text")
assert (
node1.query("DESCRIBE TABLE postgres_database.test_table").rstrip()
== "id\tInt32\t\t\t\t\t\nvalue\tNullable(Int32)"
)
2020-12-26 19:38:10 +00:00
node1.query("DETACH TABLE postgres_database.test_table")
assert "test_table" not in node1.query("SHOW TABLES FROM postgres_database")
2020-12-26 19:38:10 +00:00
node1.query("ATTACH TABLE postgres_database.test_table")
assert "test_table" in node1.query("SHOW TABLES FROM postgres_database")
2020-12-26 19:38:10 +00:00
assert (
node1.query("DESCRIBE TABLE postgres_database.test_table").rstrip()
== "id\tInt32\t\t\t\t\t\nvalue\tNullable(Int32)\t\t\t\t\t\ndata\tNullable(String)"
)
2020-12-26 19:38:10 +00:00
node1.query("DROP TABLE postgres_database.test_table")
assert "test_table" not in node1.query("SHOW TABLES FROM postgres_database")
2020-12-26 19:38:10 +00:00
node1.query("ATTACH TABLE postgres_database.test_table")
assert "test_table" in node1.query("SHOW TABLES FROM postgres_database")
2020-12-26 19:38:10 +00:00
node1.query(
"INSERT INTO postgres_database.test_table SELECT number, number, toString(number) from numbers(10000)"
)
assert (
2022-06-29 15:56:29 +00:00
node1.query("SELECT count() FROM postgres_database.test_table").rstrip()
== "10000"
)
2020-12-26 19:38:10 +00:00
cursor.execute("DROP TABLE test_table;")
assert "test_table" not in node1.query("SHOW TABLES FROM postgres_database")
2020-12-26 19:38:10 +00:00
node1.query("DROP DATABASE postgres_database")
assert "postgres_database" not in node1.query("SHOW DATABASES")
2020-12-21 19:20:56 +00:00
def test_postgresql_database_with_schema(started_cluster):
2022-06-29 15:56:29 +00:00
conn = get_postgres_conn(
started_cluster.postgres_ip, started_cluster.postgres_port, database=True
)
cursor = conn.cursor()
cursor.execute("CREATE SCHEMA test_schema")
cursor.execute("CREATE TABLE test_schema.table1 (a integer)")
cursor.execute("CREATE TABLE test_schema.table2 (a integer)")
cursor.execute("CREATE TABLE table3 (a integer)")
node1.query(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL('postgres1:5432', 'postgres_database', 'postgres', 'mysecretpassword', 'test_schema')"
)
assert node1.query("SHOW TABLES FROM postgres_database") == "table1\ntable2\n"
2022-06-29 15:56:29 +00:00
node1.query(
"INSERT INTO postgres_database.table1 SELECT number from numbers(10000)"
)
assert (
node1.query("SELECT count() FROM postgres_database.table1").rstrip() == "10000"
)
node1.query("DETACH TABLE postgres_database.table1")
node1.query("ATTACH TABLE postgres_database.table1")
2022-06-29 15:56:29 +00:00
assert (
node1.query("SELECT count() FROM postgres_database.table1").rstrip() == "10000"
)
node1.query("DROP DATABASE postgres_database")
cursor.execute("DROP SCHEMA test_schema CASCADE")
cursor.execute("DROP TABLE table3")
2022-01-21 17:03:48 +00:00
2021-09-01 23:17:15 +00:00
def test_predefined_connection_configuration(started_cluster):
cursor = started_cluster.postgres_conn.cursor()
cursor.execute(f"DROP TABLE IF EXISTS test_table")
cursor.execute(f"CREATE TABLE test_table (a integer PRIMARY KEY, b integer)")
2021-09-01 23:17:15 +00:00
node1.query("DROP DATABASE IF EXISTS postgres_database")
node1.query("CREATE DATABASE postgres_database ENGINE = PostgreSQL(postgres1)")
2022-03-15 23:52:26 +00:00
result = node1.query(
"select create_table_query from system.tables where database ='postgres_database'"
)
2022-12-22 11:15:34 +00:00
print(f"kssenii: {result}")
assert result.strip().endswith(
"ENGINE = PostgreSQL(postgres1, table = \\'test_table\\')"
)
2022-03-15 23:52:26 +00:00
node1.query(
"INSERT INTO postgres_database.test_table SELECT number, number from numbers(100)"
)
assert (
node1.query(f"SELECT count() FROM postgres_database.test_table").rstrip()
== "100"
)
2021-09-01 23:17:15 +00:00
cursor.execute("CREATE SCHEMA test_schema")
cursor.execute("CREATE TABLE test_schema.test_table (a integer)")
2021-09-01 23:17:15 +00:00
node1.query("DROP DATABASE IF EXISTS postgres_database")
node1.query(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL(postgres1, schema='test_schema')"
)
node1.query(
"INSERT INTO postgres_database.test_table SELECT number from numbers(200)"
)
assert (
node1.query(f"SELECT count() FROM postgres_database.test_table").rstrip()
== "200"
)
2021-09-01 23:17:15 +00:00
node1.query("DROP DATABASE IF EXISTS postgres_database")
node1.query_and_get_error(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL(postgres1, 'test_schema')"
)
node1.query_and_get_error(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL(postgres2)"
)
node1.query_and_get_error(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL(unknown_collection)"
)
node1.query(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL(postgres3, port=5432)"
)
assert (
node1.query(f"SELECT count() FROM postgres_database.test_table").rstrip()
== "100"
)
2023-04-24 12:45:41 +00:00
node1.query(
"""
DROP DATABASE postgres_database;
2023-05-03 23:40:12 +00:00
CREATE DATABASE postgres_database ENGINE = PostgreSQL(postgres1, use_table_cache=1);
2023-04-24 12:45:41 +00:00
"""
)
assert (
node1.query(f"SELECT count() FROM postgres_database.test_table").rstrip()
== "100"
)
assert node1.contains_in_log("Cached table `test_table`")
2021-09-01 23:17:15 +00:00
node1.query("DROP DATABASE postgres_database")
cursor.execute(f"DROP TABLE test_table ")
cursor.execute("DROP SCHEMA IF EXISTS test_schema CASCADE")
2021-09-01 23:17:15 +00:00
2022-06-24 01:24:54 +00:00
def test_postgres_database_old_syntax(started_cluster):
2022-06-29 15:56:29 +00:00
conn = get_postgres_conn(
started_cluster.postgres_ip, started_cluster.postgres_port, database=True
)
2022-06-24 01:24:54 +00:00
cursor = conn.cursor()
node1.query(
"""
CREATE DATABASE postgres_database ENGINE = PostgreSQL('postgres1:5432', 'postgres_database', 'postgres', 'mysecretpassword', 1);
2022-06-24 01:24:54 +00:00
"""
)
create_postgres_table(cursor, "test_table")
assert "test_table" in node1.query("SHOW TABLES FROM postgres_database")
cursor.execute(f"DROP TABLE test_table")
node1.query("DROP DATABASE IF EXISTS postgres_database;")
2022-06-24 01:24:54 +00:00
2022-06-29 15:56:29 +00:00
2022-07-16 10:44:47 +00:00
def test_postgresql_fetch_tables(started_cluster):
conn = get_postgres_conn(
started_cluster.postgres_ip, started_cluster.postgres_port, database=True
)
cursor = conn.cursor()
cursor.execute("DROP SCHEMA IF EXISTS test_schema CASCADE")
cursor.execute("CREATE SCHEMA test_schema")
cursor.execute("CREATE TABLE test_schema.table1 (a integer)")
cursor.execute("CREATE TABLE test_schema.table2 (a integer)")
cursor.execute("CREATE TABLE table3 (a integer)")
node1.query(
"CREATE DATABASE postgres_database ENGINE = PostgreSQL('postgres1:5432', 'postgres_database', 'postgres', 'mysecretpassword')"
)
assert node1.query("SHOW TABLES FROM postgres_database") == "table3\n"
assert not node1.contains_in_log("PostgreSQL table table1 does not exist")
cursor.execute(f"DROP TABLE table3")
cursor.execute("DROP SCHEMA IF EXISTS test_schema CASCADE")
2022-12-22 11:15:34 +00:00
def test_datetime(started_cluster):
cursor = started_cluster.postgres_conn.cursor()
cursor.execute("drop table if exists test")
cursor.execute("create table test (u timestamp)")
node1.query("drop database if exists pg")
node1.query("create database pg engine = PostgreSQL(postgres1)")
assert "DateTime64(6)" in node1.query("show create table pg.test")
node1.query("detach table pg.test")
node1.query("attach table pg.test")
assert "DateTime64(6)" in node1.query("show create table pg.test")
if __name__ == "__main__":
2020-12-21 19:20:56 +00:00
cluster.start()
input("Cluster created, press any key to destroy...")
cluster.shutdown()