-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
partition tables in Postgres #458
Comments
@tellienne which Postgres version is it ? |
v.14 |
thanks for the link, but it looks like we have a different problem. CREATE TABLE public.table_master ( After this we have one master table with many table sections that look like When the connector runs, it treats table sections as separate tables and creates them with a query: CREATE TABLE db_name.table_2023_03
) As a result, in clickhouse, instead of one master table with data, we see many tables, each of which is equal to a partition in Postgres. |
hi! |
Hello! |
Hello!
We have a table with partitions in Postgres. When we transfer data to clickhouse, the connector transfers partitions as separate real tables. Is it possible to combine partition tables into one master table in clickhouse during migration?
The text was updated successfully, but these errors were encountered: