You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
clickhouse-client --query="insert into gotest3 values(1, 2);"
clickhouse-client --query="insert into gotest3 values(2, 2);"
clickhouse-client --query="insert into gotest3 values(3, 2);"
clickhouse-client --query="insert into gotest3 values(4, 2);"
su postgres -c "make installcheck"
su postgres -c "psql << EOF
drop extension IF EXISTS ch_fdw cascade;
create extension IF NOT EXISTS ch_fdw ;
create server IF NOT EXISTS ch_fdw foreign data wrapper ch_fdw options(host '127.0.0.1', port '9000');
create foreign table IF NOT EXISTS gotest (name text not null, value text not null, num bigint not null, val numeric, val2 numeric, val3 real, val4 numeric, val5 date, val6 timestamptz) server ch_fdw options (table 'gotest');