### Current behaviour - `PeerDBClickHouseScale` is hard-coded as `38`. https://github.com/PeerDB-io/peerdb/blob/cffcf454cca0f64f72685674a496abd679fa9622/flow/shared/datatypes/numeric.go#L7 - When one tries to get a Postgres `unbounded numeric` column into ClickHouse, it is converted into `Decimal(78, 38)` and a user has no control over it. - This may be a problem when ingesting large numbers from `unbounded numeric` Postgres columns. ### Suggested behaviour - Add an option to configure precision and scale for the `unbounded numeric` Postgres columns at the mirror creation.