Skip to content

Commit

Permalink
Merge branch 'fix-tstzrange' into customer-eragon
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Nov 26, 2024
2 parents 5814889 + 25a781d commit cce59f5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ PeerDB is an ETL/ELT tool built for PostgreSQL. We implement multiple Postgres n

**From a feature richness standpoint**, we support efficient syncing of tables with large (TOAST) columns. We support multiple streaming modes - Log based (CDC) based, Query based streaming etc. We provide rich data-type mapping and plan to support every possible (incl. Custom types) that Postgres supports to the best extent possible on the target data-store.

### Now available natively in ClickHouse Cloud (Private Preview)

PeerDB is now available natively in ClickHouse Cloud (Private Preview). Learn more about it [here](https://clickhouse.com/cloud/clickpipes/postgres-cdc-connector).

<a href="https://clickhouse.com/cloud/clickpipes/postgres-cdc-connector">
<img src="images/in-clickpipes.png" width="512" />
</a>

#### **Postgres-compatible SQL interface to do ETL**

The Postgres-compatible SQL interface for ETL is unique to PeerDB and enables you to operate in a language you are familiar with. You can do ETL the same way you work with your databases.
Expand Down
1 change: 1 addition & 0 deletions flow/connectors/utils/cdc_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (

func encVal(val any) ([]byte, error) {
buf := new(bytes.Buffer)
gob.Register(val)
enc := gob.NewEncoder(buf)
err := enc.Encode(val)
if err != nil {
Expand Down
Binary file added images/in-clickpipes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cce59f5

Please sign in to comment.