2021-07-12 08:32:20 +00:00
import logging
2020-12-11 17:01:00 +00:00
import pytest
2021-03-16 07:56:22 +00:00
from multiprocessing . dummy import Pool
2020-12-11 17:01:00 +00:00
from helpers . cluster import ClickHouseCluster
cluster = ClickHouseCluster ( __file__ )
2021-09-01 17:59:11 +00:00
node1 = cluster . add_instance ( ' node1 ' , main_configs = [ ' configs/named_collections.xml ' ] , with_postgres = True )
2021-09-15 22:45:43 +00:00
node2 = cluster . add_instance ( ' node2 ' , main_configs = [ ' configs/named_collections.xml ' ] , with_postgres_cluster = True )
2020-12-11 17:01:00 +00:00
@pytest.fixture ( scope = " module " )
def started_cluster ( ) :
try :
cluster . start ( )
yield cluster
finally :
cluster . shutdown ( )
def test_postgres_select_insert ( started_cluster ) :
2021-07-12 08:32:20 +00:00
cursor = started_cluster . postgres_conn . cursor ( )
2020-12-11 17:01:00 +00:00
table_name = ' test_many '
2021-07-16 13:26:35 +00:00
table = f ''' postgresql( ' { started_cluster . postgres_ip } : { started_cluster . postgres_port } ' , ' postgres ' , ' { table_name } ' , ' postgres ' , ' mysecretpassword ' ) '''
cursor . execute ( f ' DROP TABLE IF EXISTS { table_name } ' )
cursor . execute ( f ' CREATE TABLE { table_name } (a integer, b text, c integer) ' )
result = node1 . query ( f '''
INSERT INTO TABLE FUNCTION { table }
SELECT number , concat ( ' name_ ' , toString ( number ) ) , 3 from numbers ( 10000 ) ''' )
check1 = f " SELECT count() FROM { table } "
check2 = f " SELECT Sum(c) FROM { table } "
check3 = f " SELECT count(c) FROM { table } WHERE a % 2 == 0 "
check4 = f " SELECT count() FROM { table } WHERE b LIKE concat( ' name_ ' , toString(1)) "
2020-12-11 17:01:00 +00:00
assert ( node1 . query ( check1 ) ) . rstrip ( ) == ' 10000 '
assert ( node1 . query ( check2 ) ) . rstrip ( ) == ' 30000 '
assert ( node1 . query ( check3 ) ) . rstrip ( ) == ' 5000 '
assert ( node1 . query ( check4 ) ) . rstrip ( ) == ' 1 '
2021-07-16 13:26:35 +00:00
# Triggers issue https://github.com/ClickHouse/ClickHouse/issues/26088
# for i in range(1, 1000):
# assert (node1.query(check1)).rstrip() == '10000', f"Failed on {i}"
cursor . execute ( f ' DROP TABLE { table_name } ' )
2020-12-11 17:01:00 +00:00
2021-01-09 22:42:42 +00:00
def test_postgres_conversions ( started_cluster ) :
2021-07-12 08:32:20 +00:00
cursor = started_cluster . postgres_conn . cursor ( )
2021-07-16 13:26:35 +00:00
cursor . execute ( f ' DROP TABLE IF EXISTS test_types ' )
cursor . execute ( f ' DROP TABLE IF EXISTS test_array_dimensions ' )
2021-01-09 22:42:42 +00:00
cursor . execute (
2021-07-19 08:32:20 +00:00
''' CREATE TABLE test_types (
2021-01-09 22:42:42 +00:00
a smallint , b integer , c bigint , d real , e double precision , f serial , g bigserial ,
2021-04-05 14:49:52 +00:00
h timestamp , i date , j decimal ( 5 , 3 ) , k numeric , l boolean ) ''' )
2021-01-09 22:42:42 +00:00
node1 . query ( '''
2021-07-16 13:26:35 +00:00
INSERT INTO TABLE FUNCTION postgresql ( ' postgres1:5432 ' , ' postgres ' , ' test_types ' , ' postgres ' , ' mysecretpassword ' ) VALUES
2021-07-14 00:51:14 +00:00
( - 32768 , - 2147483648 , - 9223372036854775808 , 1.12345 , 1.1234567890 , 2147483647 , 9223372036854775807 , ' 2000-05-12 12:12:12.012345 ' , ' 2000-05-12 ' , 22.222 , 22.222 , 1 ) ''' )
2021-01-09 22:42:42 +00:00
result = node1 . query ( '''
2021-07-19 08:32:20 +00:00
SELECT a , b , c , d , e , f , g , h , i , j , toDecimal128 ( k , 3 ) , l FROM postgresql ( ' postgres1:5432 ' , ' postgres ' , ' test_types ' , ' postgres ' , ' mysecretpassword ' ) ''' )
2021-07-14 00:51:14 +00:00
assert ( result == ' -32768 \t -2147483648 \t -9223372036854775808 \t 1.12345 \t 1.123456789 \t 2147483647 \t 9223372036854775807 \t 2000-05-12 12:12:12.012345 \t 2000-05-12 \t 22.222 \t 22.222 \t 1 \n ' )
2021-04-05 14:49:52 +00:00
cursor . execute ( " INSERT INTO test_types (l) VALUES (TRUE), (true), ( ' yes ' ), ( ' y ' ), ( ' 1 ' ); " )
cursor . execute ( " INSERT INTO test_types (l) VALUES (FALSE), (false), ( ' no ' ), ( ' off ' ), ( ' 0 ' ); " )
expected = " 1 \n 1 \n 1 \n 1 \n 1 \n 1 \n 0 \n 0 \n 0 \n 0 \n 0 \n "
2021-07-16 13:26:35 +00:00
result = node1 . query ( ''' SELECT l FROM postgresql( ' postgres1:5432 ' , ' postgres ' , ' test_types ' , ' postgres ' , ' mysecretpassword ' ) ''' )
2021-04-05 14:49:52 +00:00
assert ( result == expected )
2021-01-09 22:42:42 +00:00
cursor . execute (
''' CREATE TABLE IF NOT EXISTS test_array_dimensions
(
a Date [ ] NOT NULL , - - Date
2021-07-14 00:51:14 +00:00
b Timestamp [ ] NOT NULL , - - DateTime64 ( 6 )
2021-01-09 22:42:42 +00:00
c real [ ] [ ] NOT NULL , - - Float32
d double precision [ ] [ ] NOT NULL , - - Float64
e decimal ( 5 , 5 ) [ ] [ ] [ ] NOT NULL , - - Decimal32
f integer [ ] [ ] [ ] NOT NULL , - - Int32
g Text [ ] [ ] [ ] [ ] [ ] NOT NULL , - - String
h Integer [ ] [ ] [ ] , - - Nullable ( Int32 )
i Char ( 2 ) [ ] [ ] [ ] [ ] , - - Nullable ( String )
k Char ( 2 ) [ ] - - Nullable ( String )
) ''' )
result = node1 . query ( '''
2021-07-16 13:26:35 +00:00
DESCRIBE TABLE postgresql ( ' postgres1:5432 ' , ' postgres ' , ' test_array_dimensions ' , ' postgres ' , ' mysecretpassword ' ) ''' )
2021-01-09 22:42:42 +00:00
expected = ( ' a \t Array(Date) \t \t \t \t \t \n ' +
2021-07-14 00:51:14 +00:00
' b \t Array(DateTime64(6)) \t \t \t \t \t \n ' +
2021-01-09 22:42:42 +00:00
' c \t Array(Array(Float32)) \t \t \t \t \t \n ' +
' d \t Array(Array(Float64)) \t \t \t \t \t \n ' +
' e \t Array(Array(Array(Decimal(5, 5)))) \t \t \t \t \t \n ' +
' f \t Array(Array(Array(Int32))) \t \t \t \t \t \n ' +
' g \t Array(Array(Array(Array(Array(String))))) \t \t \t \t \t \n ' +
' h \t Array(Array(Array(Nullable(Int32)))) \t \t \t \t \t \n ' +
' i \t Array(Array(Array(Array(Nullable(String))))) \t \t \t \t \t \n ' +
' k \t Array(Nullable(String)) '
)
assert ( result . rstrip ( ) == expected )
2021-07-16 13:26:35 +00:00
node1 . query ( " INSERT INTO TABLE FUNCTION postgresql( ' postgres1:5432 ' , ' postgres ' , ' test_array_dimensions ' , ' postgres ' , ' mysecretpassword ' ) "
2021-01-09 22:42:42 +00:00
" VALUES ( "
" [ ' 2000-05-12 ' , ' 2000-05-12 ' ], "
2021-07-14 00:51:14 +00:00
" [ ' 2000-05-12 12:12:12.012345 ' , ' 2000-05-12 12:12:12.012345 ' ], "
2021-01-09 22:42:42 +00:00
" [[1.12345], [1.12345], [1.12345]], "
" [[1.1234567891], [1.1234567891], [1.1234567891]], "
" [[[0.11111, 0.11111]], [[0.22222, 0.22222]], [[0.33333, 0.33333]]], "
" [[[1, 1], [1, 1]], [[3, 3], [3, 3]], [[4, 4], [5, 5]]], "
" [[[[[ ' winx ' , ' winx ' , ' winx ' ]]]]], "
" [[[1, NULL], [NULL, 1]], [[NULL, NULL], [NULL, NULL]], [[4, 4], [5, 5]]], "
" [[[[NULL]]]], "
" [] "
" ) " )
result = node1 . query ( '''
2021-07-16 13:26:35 +00:00
SELECT * FROM postgresql ( ' postgres1:5432 ' , ' postgres ' , ' test_array_dimensions ' , ' postgres ' , ' mysecretpassword ' ) ''' )
2021-01-09 22:42:42 +00:00
expected = (
" [ ' 2000-05-12 ' , ' 2000-05-12 ' ] \t " +
2021-07-14 00:51:14 +00:00
" [ ' 2000-05-12 12:12:12.012345 ' , ' 2000-05-12 12:12:12.012345 ' ] \t " +
2021-01-09 22:42:42 +00:00
" [[1.12345],[1.12345],[1.12345]] \t " +
" [[1.1234567891],[1.1234567891],[1.1234567891]] \t " +
" [[[0.11111,0.11111]],[[0.22222,0.22222]],[[0.33333,0.33333]]] \t "
" [[[1,1],[1,1]],[[3,3],[3,3]],[[4,4],[5,5]]] \t "
" [[[[[ ' winx ' , ' winx ' , ' winx ' ]]]]] \t "
" [[[1,NULL],[NULL,1]],[[NULL,NULL],[NULL,NULL]],[[4,4],[5,5]]] \t "
" [[[[NULL]]]] \t "
" [] \n "
)
assert ( result == expected )
2021-07-16 13:26:35 +00:00
cursor . execute ( f ' DROP TABLE test_types ' )
cursor . execute ( f ' DROP TABLE test_array_dimensions ' )
2021-01-09 22:42:42 +00:00
2021-03-14 10:35:10 +00:00
def test_non_default_scema ( started_cluster ) :
2021-07-16 13:26:35 +00:00
node1 . query ( ' DROP TABLE IF EXISTS test_pg_table_schema ' )
node1 . query ( ' DROP TABLE IF EXISTS test_pg_table_schema_with_dots ' )
2021-07-12 08:32:20 +00:00
cursor = started_cluster . postgres_conn . cursor ( )
2021-07-16 13:26:35 +00:00
cursor . execute ( ' DROP SCHEMA IF EXISTS test_schema CASCADE ' )
cursor . execute ( ' DROP SCHEMA IF EXISTS " test.nice.schema " CASCADE ' )
2021-03-14 10:35:10 +00:00
cursor . execute ( ' CREATE SCHEMA test_schema ' )
cursor . execute ( ' CREATE TABLE test_schema.test_table (a integer) ' )
cursor . execute ( ' INSERT INTO test_schema.test_table SELECT i FROM generate_series(0, 99) as t(i) ' )
node1 . query ( '''
CREATE TABLE test_pg_table_schema ( a UInt32 )
2021-07-16 13:26:35 +00:00
ENGINE PostgreSQL ( ' postgres1:5432 ' , ' postgres ' , ' test_table ' , ' postgres ' , ' mysecretpassword ' , ' test_schema ' ) ;
2021-03-14 10:35:10 +00:00
''' )
result = node1 . query ( ' SELECT * FROM test_pg_table_schema ' )
expected = node1 . query ( ' SELECT number FROM numbers(100) ' )
assert ( result == expected )
2021-07-16 13:26:35 +00:00
table_function = ''' postgresql( ' postgres1:5432 ' , ' postgres ' , ' test_table ' , ' postgres ' , ' mysecretpassword ' , ' test_schema ' ) '''
result = node1 . query ( f ' SELECT * FROM { table_function } ' )
2021-03-14 10:35:10 +00:00
assert ( result == expected )
2021-03-16 10:20:31 +00:00
cursor . execute ( ''' CREATE SCHEMA " test.nice.schema " ''' )
cursor . execute ( ''' CREATE TABLE " test.nice.schema " . " test.nice.table " (a integer) ''' )
cursor . execute ( ' INSERT INTO " test.nice.schema " . " test.nice.table " SELECT i FROM generate_series(0, 99) as t(i) ' )
node1 . query ( '''
CREATE TABLE test_pg_table_schema_with_dots ( a UInt32 )
2021-07-16 13:26:35 +00:00
ENGINE PostgreSQL ( ' postgres1:5432 ' , ' postgres ' , ' test.nice.table ' , ' postgres ' , ' mysecretpassword ' , ' test.nice.schema ' ) ;
2021-03-16 10:20:31 +00:00
''' )
result = node1 . query ( ' SELECT * FROM test_pg_table_schema_with_dots ' )
assert ( result == expected )
2021-05-22 08:47:19 +00:00
cursor . execute ( ' INSERT INTO " test_schema " . " test_table " SELECT i FROM generate_series(100, 199) as t(i) ' )
2021-07-16 13:26:35 +00:00
result = node1 . query ( f ' SELECT * FROM { table_function } ' )
2021-05-22 08:47:19 +00:00
expected = node1 . query ( ' SELECT number FROM numbers(200) ' )
assert ( result == expected )
2021-07-16 13:26:35 +00:00
cursor . execute ( ' DROP SCHEMA test_schema CASCADE ' )
cursor . execute ( ' DROP SCHEMA " test.nice.schema " CASCADE ' )
node1 . query ( ' DROP TABLE test_pg_table_schema ' )
node1 . query ( ' DROP TABLE test_pg_table_schema_with_dots ' )
2021-03-14 10:35:10 +00:00
2021-03-19 20:57:00 +00:00
def test_concurrent_queries ( started_cluster ) :
2021-07-12 08:32:20 +00:00
cursor = started_cluster . postgres_conn . cursor ( )
2021-03-19 20:57:00 +00:00
2021-03-19 16:12:33 +00:00
node1 . query ( '''
CREATE TABLE test_table ( key UInt32 , value UInt32 )
2021-07-16 13:26:35 +00:00
ENGINE = PostgreSQL ( ' postgres1:5432 ' , ' postgres ' , ' test_table ' , ' postgres ' , ' mysecretpassword ' ) ''' )
2021-03-19 16:12:33 +00:00
cursor . execute ( ' CREATE TABLE test_table (key integer, value integer) ' )
2021-03-19 20:57:00 +00:00
prev_count = node1 . count_in_log ( ' New connection to postgres1:5432 ' )
def node_select ( _ ) :
for i in range ( 20 ) :
result = node1 . query ( " SELECT * FROM test_table " , user = ' default ' )
busy_pool = Pool ( 20 )
p = busy_pool . map_async ( node_select , range ( 20 ) )
2021-03-19 16:12:33 +00:00
p . wait ( )
2021-03-19 20:57:00 +00:00
count = node1 . count_in_log ( ' New connection to postgres1:5432 ' )
2021-07-16 13:26:35 +00:00
logging . debug ( f ' count { count } , prev_count { prev_count } ' )
2021-03-19 20:57:00 +00:00
# 16 is default size for connection pool
2021-05-05 22:46:52 +00:00
assert ( int ( count ) < = int ( prev_count ) + 16 )
2021-03-16 07:56:22 +00:00
def node_insert ( _ ) :
2021-03-19 20:57:00 +00:00
for i in range ( 5 ) :
2021-03-18 20:04:54 +00:00
result = node1 . query ( " INSERT INTO test_table SELECT number, number FROM numbers(1000) " , user = ' default ' )
2021-03-16 07:56:22 +00:00
2021-03-19 20:57:00 +00:00
busy_pool = Pool ( 5 )
p = busy_pool . map_async ( node_insert , range ( 5 ) )
2021-03-16 07:56:22 +00:00
p . wait ( )
result = node1 . query ( " SELECT count() FROM test_table " , user = ' default ' )
2021-07-12 08:32:20 +00:00
logging . debug ( result )
2021-03-19 20:57:00 +00:00
assert ( int ( result ) == 5 * 5 * 1000 )
2021-03-16 07:56:22 +00:00
def node_insert_select ( _ ) :
2021-03-19 20:57:00 +00:00
for i in range ( 5 ) :
2021-03-18 20:04:54 +00:00
result = node1 . query ( " INSERT INTO test_table SELECT number, number FROM numbers(1000) " , user = ' default ' )
2021-03-16 07:56:22 +00:00
result = node1 . query ( " SELECT * FROM test_table LIMIT 100 " , user = ' default ' )
2021-03-19 20:57:00 +00:00
busy_pool = Pool ( 5 )
p = busy_pool . map_async ( node_insert_select , range ( 5 ) )
2021-03-16 07:56:22 +00:00
p . wait ( )
result = node1 . query ( " SELECT count() FROM test_table " , user = ' default ' )
2021-07-12 08:32:20 +00:00
logging . debug ( result )
2021-03-19 20:57:00 +00:00
assert ( int ( result ) == 5 * 5 * 1000 * 2 )
2021-03-16 07:56:22 +00:00
2021-03-19 16:12:33 +00:00
node1 . query ( ' DROP TABLE test_table; ' )
cursor . execute ( ' DROP TABLE test_table; ' )
2021-03-19 20:57:00 +00:00
count = node1 . count_in_log ( ' New connection to postgres1:5432 ' )
2021-07-16 13:26:35 +00:00
logging . debug ( f ' count { count } , prev_count { prev_count } ' )
2021-05-05 22:46:52 +00:00
assert ( int ( count ) < = int ( prev_count ) + 16 )
2021-03-19 20:57:00 +00:00
2021-03-16 07:56:22 +00:00
2021-03-27 19:18:05 +00:00
def test_postgres_distributed ( started_cluster ) :
2021-07-12 08:32:20 +00:00
cursor0 = started_cluster . postgres_conn . cursor ( )
2021-07-16 13:26:35 +00:00
cursor1 = started_cluster . postgres2_conn . cursor ( )
cursor2 = started_cluster . postgres3_conn . cursor ( )
cursor3 = started_cluster . postgres4_conn . cursor ( )
2021-03-31 23:48:54 +00:00
cursors = [ cursor0 , cursor1 , cursor2 , cursor3 ]
2021-03-27 19:18:05 +00:00
2021-03-31 23:48:54 +00:00
for i in range ( 4 ) :
2021-07-16 13:26:35 +00:00
cursors [ i ] . execute ( ' DROP TABLE IF EXISTS test_replicas ' )
2021-03-27 19:18:05 +00:00
cursors [ i ] . execute ( ' CREATE TABLE test_replicas (id Integer, name Text) ' )
2021-07-16 13:26:35 +00:00
cursors [ i ] . execute ( f """ INSERT INTO test_replicas select i, ' host { i + 1 } ' from generate_series(0, 99) as t(i); """ ) ;
2021-03-27 19:18:05 +00:00
2021-04-01 10:27:24 +00:00
# test multiple ports parsing
2021-09-01 17:59:11 +00:00
result = node2 . query ( ''' SELECT DISTINCT(name) FROM postgresql( ' postgres { 1|2|3}:5432 ' , ' postgres ' , ' test_replicas ' , ' postgres ' , ' mysecretpassword ' ); ''' )
2021-04-01 10:27:24 +00:00
assert ( result == ' host1 \n ' or result == ' host2 \n ' or result == ' host3 \n ' )
2021-09-01 17:59:11 +00:00
result = node2 . query ( ''' SELECT DISTINCT(name) FROM postgresql( ' postgres2:5431|postgres3:5432 ' , ' postgres ' , ' test_replicas ' , ' postgres ' , ' mysecretpassword ' ); ''' )
2021-04-01 10:27:24 +00:00
assert ( result == ' host3 \n ' or result == ' host2 \n ' )
# Create storage with with 3 replicas
2021-07-16 13:26:35 +00:00
node2 . query ( ' DROP TABLE IF EXISTS test_replicas ' )
2021-03-31 17:04:57 +00:00
node2 . query ( '''
2021-03-27 19:18:05 +00:00
CREATE TABLE test_replicas
( id UInt32 , name String )
2021-09-03 11:16:32 +00:00
ENGINE = PostgreSQL ( ' postgres { 2|3|4}:5432 ' , ' postgres ' , ' test_replicas ' , ' postgres ' , ' mysecretpassword ' ) ; ''' )
2021-03-27 19:18:05 +00:00
2021-04-01 10:27:24 +00:00
# Check all replicas are traversed
2021-03-27 19:18:05 +00:00
query = " SELECT name FROM ( "
for i in range ( 3 ) :
query + = " SELECT name FROM test_replicas UNION DISTINCT "
query + = " SELECT name FROM test_replicas) ORDER BY name "
2021-03-31 17:04:57 +00:00
result = node2 . query ( query )
2021-03-31 23:48:54 +00:00
assert ( result == ' host2 \n host3 \n host4 \n ' )
2021-04-01 10:27:24 +00:00
# Create storage with with two two shards, each has 2 replicas
2021-07-16 13:26:35 +00:00
node2 . query ( ' DROP TABLE IF EXISTS test_shards ' )
2021-03-31 17:04:57 +00:00
node2 . query ( '''
2021-03-27 19:18:05 +00:00
CREATE TABLE test_shards
( id UInt32 , name String , age UInt32 , money UInt32 )
2021-09-01 17:59:11 +00:00
ENGINE = ExternalDistributed ( ' PostgreSQL ' , ' postgres { 1|2}:5432,postgres { 3|4}:5432 ' , ' postgres ' , ' test_replicas ' , ' postgres ' , ' mysecretpassword ' ) ; ''' )
2021-03-27 19:18:05 +00:00
2021-03-28 19:35:58 +00:00
# Check only one replica in each shard is used
2021-03-31 17:04:57 +00:00
result = node2 . query ( " SELECT DISTINCT(name) FROM test_shards ORDER BY name " )
2021-04-01 10:27:24 +00:00
assert ( result == ' host1 \n host3 \n ' )
2021-03-28 19:35:58 +00:00
2021-09-15 22:45:43 +00:00
node2 . query ( '''
CREATE TABLE test_shards2
( id UInt32 , name String , age UInt32 , money UInt32 )
ENGINE = ExternalDistributed ( ' PostgreSQL ' , postgres4 , description = ' postgres { 1|2}:5432,postgres { 3|4}:5432 ' ) ; ''' )
result = node2 . query ( " SELECT DISTINCT(name) FROM test_shards2 ORDER BY name " )
assert ( result == ' host1 \n host3 \n ' )
2021-04-01 10:27:24 +00:00
# Check all replicas are traversed
2021-03-27 19:18:05 +00:00
query = " SELECT name FROM ( "
2021-03-31 23:48:54 +00:00
for i in range ( 3 ) :
2021-03-27 19:18:05 +00:00
query + = " SELECT name FROM test_shards UNION DISTINCT "
query + = " SELECT name FROM test_shards) ORDER BY name "
2021-03-31 17:04:57 +00:00
result = node2 . query ( query )
2021-03-31 23:48:54 +00:00
assert ( result == ' host1 \n host2 \n host3 \n host4 \n ' )
2021-04-01 10:27:24 +00:00
# Disconnect postgres1
2021-03-31 23:48:54 +00:00
started_cluster . pause_container ( ' postgres1 ' )
result = node2 . query ( " SELECT DISTINCT(name) FROM test_shards ORDER BY name " )
2021-04-03 07:59:26 +00:00
started_cluster . unpause_container ( ' postgres1 ' )
2021-03-31 23:48:54 +00:00
assert ( result == ' host2 \n host4 \n ' or result == ' host3 \n host4 \n ' )
2021-07-16 13:26:35 +00:00
node2 . query ( ' DROP TABLE test_shards ' )
node2 . query ( ' DROP TABLE test_replicas ' )
2021-03-27 19:18:05 +00:00
2021-08-24 12:29:42 +00:00
2021-06-21 08:18:38 +00:00
def test_datetime_with_timezone ( started_cluster ) :
2021-07-16 13:26:35 +00:00
cursor = started_cluster . postgres_conn . cursor ( )
cursor . execute ( " DROP TABLE IF EXISTS test_timezone " )
node1 . query ( " DROP TABLE IF EXISTS test_timezone " )
2021-06-21 08:18:38 +00:00
cursor . execute ( " CREATE TABLE test_timezone (ts timestamp without time zone, ts_z timestamp with time zone) " )
cursor . execute ( " insert into test_timezone select ' 2014-04-04 20:00:00 ' , ' 2014-04-04 20:00:00 ' ::timestamptz at time zone ' America/New_York ' ; " )
cursor . execute ( " select * from test_timezone " )
result = cursor . fetchall ( ) [ 0 ]
2021-07-16 13:26:35 +00:00
logging . debug ( f ' { result [ 0 ] } , { str ( result [ 1 ] ) [ : - 6 ] } ' )
node1 . query ( " create table test_timezone ( ts DateTime, ts_z DateTime( ' America/New_York ' )) ENGINE PostgreSQL( ' postgres1:5432 ' , ' postgres ' , ' test_timezone ' , ' postgres ' , ' mysecretpassword ' ); " )
2021-06-21 08:18:38 +00:00
assert ( node1 . query ( " select ts from test_timezone " ) . strip ( ) == str ( result [ 0 ] ) )
# [:-6] because 2014-04-04 16:00:00+00:00 -> 2014-04-04 16:00:00
assert ( node1 . query ( " select ts_z from test_timezone " ) . strip ( ) == str ( result [ 1 ] ) [ : - 6 ] )
assert ( node1 . query ( " select * from test_timezone " ) == " 2014-04-04 20:00:00 \t 2014-04-04 16:00:00 \n " )
2021-07-16 13:26:35 +00:00
cursor . execute ( " DROP TABLE test_timezone " )
node1 . query ( " DROP TABLE test_timezone " )
2021-06-21 08:18:38 +00:00
2021-06-21 11:27:10 +00:00
def test_postgres_ndim ( started_cluster ) :
2021-07-16 13:26:35 +00:00
cursor = started_cluster . postgres_conn . cursor ( )
cursor . execute ( " DROP TABLE IF EXISTS arr1, arr2 " )
2021-06-21 11:27:10 +00:00
cursor . execute ( ' CREATE TABLE arr1 (a Integer[]) ' )
cursor . execute ( " INSERT INTO arr1 SELECT ' {{ 1}, {2} } ' " )
# The point is in creating a table via 'as select *', in postgres att_ndim will not be correct in this case.
cursor . execute ( ' CREATE TABLE arr2 AS SELECT * FROM arr1 ' )
cursor . execute ( " SELECT attndims AS dims FROM pg_attribute WHERE attrelid = ' arr2 ' ::regclass; " )
result = cursor . fetchall ( ) [ 0 ]
assert ( int ( result [ 0 ] ) == 0 )
2021-07-16 13:26:35 +00:00
result = node1 . query ( ''' SELECT toTypeName(a) FROM postgresql( ' postgres1:5432 ' , ' postgres ' , ' arr2 ' , ' postgres ' , ' mysecretpassword ' ) ''' )
2021-06-21 11:27:10 +00:00
assert ( result . strip ( ) == " Array(Array(Nullable(Int32))) " )
2021-07-16 13:26:35 +00:00
cursor . execute ( " DROP TABLE arr1, arr2 " )
2021-06-21 11:27:10 +00:00
2021-08-24 12:29:42 +00:00
def test_postgres_on_conflict ( started_cluster ) :
cursor = started_cluster . postgres_conn . cursor ( )
table = ' test_conflict '
cursor . execute ( f ' DROP TABLE IF EXISTS { table } ' )
cursor . execute ( f ' CREATE TABLE { table } (a integer PRIMARY KEY, b text, c integer) ' )
node1 . query ( '''
CREATE TABLE test_conflict ( a UInt32 , b String , c Int32 )
ENGINE PostgreSQL ( ' postgres1:5432 ' , ' postgres ' , ' test_conflict ' , ' postgres ' , ' mysecretpassword ' , ' ' , ' ON CONFLICT DO NOTHING ' ) ;
''' )
node1 . query ( f ''' INSERT INTO { table } SELECT number, concat( ' name_ ' , toString(number)), 3 from numbers(100) ''' )
node1 . query ( f ''' INSERT INTO { table } SELECT number, concat( ' name_ ' , toString(number)), 4 from numbers(100) ''' )
check1 = f " SELECT count() FROM { table } "
assert ( node1 . query ( check1 ) ) . rstrip ( ) == ' 100 '
table_func = f ''' postgresql( ' { started_cluster . postgres_ip } : { started_cluster . postgres_port } ' , ' postgres ' , ' { table } ' , ' postgres ' , ' mysecretpassword ' , ' ' , ' ON CONFLICT DO NOTHING ' ) '''
node1 . query ( f ''' INSERT INTO TABLE FUNCTION { table_func } SELECT number, concat( ' name_ ' , toString(number)), 3 from numbers(100) ''' )
node1 . query ( f ''' INSERT INTO TABLE FUNCTION { table_func } SELECT number, concat( ' name_ ' , toString(number)), 3 from numbers(100) ''' )
check1 = f " SELECT count() FROM { table } "
assert ( node1 . query ( check1 ) ) . rstrip ( ) == ' 100 '
cursor . execute ( f ' DROP TABLE { table } ' )
2021-09-01 17:59:11 +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) ' )
node1 . query ( '''
2021-09-03 11:16:32 +00:00
DROP TABLE IF EXISTS test_table ;
2021-09-01 17:59:11 +00:00
CREATE TABLE test_table ( a UInt32 , b Int32 )
ENGINE PostgreSQL ( postgres1 ) ;
''' )
node1 . query ( f ''' INSERT INTO test_table SELECT number, number from numbers(100) ''' )
assert ( node1 . query ( f " SELECT count() FROM test_table " ) . rstrip ( ) == ' 100 ' )
node1 . query ( '''
DROP TABLE test_table ;
CREATE TABLE test_table ( a UInt32 , b Int32 )
ENGINE PostgreSQL ( postgres1 , on_conflict = ' ON CONFLICT DO NOTHING ' ) ;
''' )
node1 . query ( f ''' INSERT INTO test_table SELECT number, number from numbers(100) ''' )
node1 . query ( f ''' INSERT INTO test_table SELECT number, number from numbers(100) ''' )
assert ( node1 . query ( f " SELECT count() FROM test_table " ) . rstrip ( ) == ' 100 ' )
node1 . query ( ' DROP TABLE test_table; ' )
node1 . query_and_get_error ( '''
CREATE TABLE test_table ( a UInt32 , b Int32 )
ENGINE PostgreSQL ( postgres1 , ' ON CONFLICT DO NOTHING ' ) ;
''' )
node1 . query_and_get_error ( '''
CREATE TABLE test_table ( a UInt32 , b Int32 )
ENGINE PostgreSQL ( postgres2 ) ;
''' )
2021-09-01 23:17:15 +00:00
node1 . query_and_get_error ( '''
CREATE TABLE test_table ( a UInt32 , b Int32 )
ENGINE PostgreSQL ( unknown_collection ) ;
''' )
2021-09-01 17:59:11 +00:00
node1 . query ( '''
CREATE TABLE test_table ( a UInt32 , b Int32 )
ENGINE PostgreSQL ( postgres1 , port = 5432 , database = ' postgres ' , table = ' test_table ' ) ;
''' )
assert ( node1 . query ( f " SELECT count() FROM test_table " ) . rstrip ( ) == ' 100 ' )
node1 . query ( '''
DROP TABLE test_table ;
CREATE TABLE test_table ( a UInt32 , b Int32 )
2021-09-01 23:17:15 +00:00
ENGINE PostgreSQL ( postgres3 , port = 5432 ) ;
2021-09-01 17:59:11 +00:00
''' )
assert ( node1 . query ( f " SELECT count() FROM test_table " ) . rstrip ( ) == ' 100 ' )
assert ( node1 . query ( f " SELECT count() FROM postgresql(postgres1) " ) . rstrip ( ) == ' 100 ' )
node1 . query ( " INSERT INTO TABLE FUNCTION postgresql(postgres1, on_conflict= ' ON CONFLICT DO NOTHING ' ) SELECT number, number from numbers(100) " )
assert ( node1 . query ( f " SELECT count() FROM postgresql(postgres1) " ) . rstrip ( ) == ' 100 ' )
2021-09-03 11:16:32 +00:00
cursor . execute ( ' DROP SCHEMA IF EXISTS test_schema CASCADE ' )
2021-09-01 17:59:11 +00:00
cursor . execute ( ' CREATE SCHEMA test_schema ' )
cursor . execute ( ' CREATE TABLE test_schema.test_table (a integer) ' )
node1 . query ( " INSERT INTO TABLE FUNCTION postgresql(postgres1, schema= ' test_schema ' , on_conflict= ' ON CONFLICT DO NOTHING ' ) SELECT number from numbers(200) " )
assert ( node1 . query ( f " SELECT count() FROM postgresql(postgres1, schema= ' test_schema ' ) " ) . rstrip ( ) == ' 200 ' )
2021-09-03 11:16:32 +00:00
cursor . execute ( ' DROP SCHEMA test_schema CASCADE ' )
2021-09-01 17:59:11 +00:00
cursor . execute ( f ' DROP TABLE test_table ' )
2020-12-11 17:01:00 +00:00
if __name__ == ' __main__ ' :
cluster . start ( )
input ( " Cluster created, press any key to destroy... " )
cluster . shutdown ( )