Skip to content

Commit 87f2274

Browse files
authored
Merge pull request #3489 from ClickHouse/add-fixedstring-to-postgresql-mapping
Add FixedString to PostgreSQL mapping
2 parents c60997a + 6465f22 commit 87f2274

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/integrations/data-ingestion/dbms/postgresql/data-type-mappings.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ The following table shows the equivalent ClickHouse data types for Postgres.
1818
| `BIGINT` | [Int64](/sql-reference/data-types/int-uint) |
1919
| `SERIAL` | [UInt32](/sql-reference/data-types/int-uint) |
2020
| `BIGSERIAL` | [UInt64](/sql-reference/data-types/int-uint) |
21-
| `TEXT, CHAR` | [String](/sql-reference/data-types/string) |
21+
| `TEXT` | [String](/sql-reference/data-types/string) |
22+
| `CHAR, BPCHAR` | [FixedString](/sql-reference/data-types/fixedstring) |
2223
| `INTEGER` | Nullable([Int32](/sql-reference/data-types/int-uint)) |
2324
| `ARRAY` | [Array](/sql-reference/data-types/array) |
2425
| `FLOAT4` | [Float32](/sql-reference/data-types/float) |

0 commit comments

Comments
 (0)