PostgreSQL Wire Protocol

Table of Contents

Introduction

CrateDB contains support for the PostgreSQL wire protocol v3.

If a node is started with postgres support enabled it will bind to port 5432 by default. To use a custom port, set the corresponding Ports in the Configuration.

However, even though connecting PostgreSQL tools and client libraries is supported, the actual SQL statements have to be supported by CrateDB’s SQL dialect. A notable difference is that CrateDB doesn’t support transactions, which is why clients should generally enable autocommit.

Note

In order to use setFetchSize in JDBC it is possible to set autocommit to false.

The client will utilize the fetchSize on SELECT statements and only load up to fetchSize rows into memory.

See PostgreSQL JDBC Query docs <https://jdbc.postgresql.org/documentation/head/query.html> for more information.

Write operations will still behave as if autocommit was enabled and commit or rollback calls are ignored.

Server Compatibility and Implementation Status

CrateDB emulates PostgreSQL server version 10.5.

Start-Up

SSL Support

SSL support is only available in the Enterprise Edition. If enterprise is disabled, all SSLRequests are answered with N, indicating to the client that SSL is not available.

Authentication

If the Enterprise Edition is enabled, authentication methods can be configured using Host Based Authentication (HBA).

If the enterprise functionality is disabled, all “start up” requests are answered with an AuthenticationOK response.

ParameterStatus

After the authentication has succeeded the server has the possibility to send multiple ParameterStatus messages to the client. These are used to communicate information like server_version (emulates PostgreSQL 9.5) or server_encoding.

CrateDB also sends a message containing the crate_version parameter. This contains the current CrateDB version number.

This information is useful for clients to detect that they’re connecting to CrateDB instead of a PostgreSQL instance.

Database selection

Since CrateDB uses schemas instead of databases, the database parameter sets the default schema name for future queries. If no schema is specified, the schema doc will be used as default. Additionally, the only supported charset is UTF8.

Query Modes

Simple Query

The Simple Query protocol mode is fully implemented.

Extended Query

The Extended Query protocol mode is implemented with the following limitations:

  • The ParameterDescription message works for the most common use cases except for DDL statements.

  • To optimize the execution of bulk operations the execution of statements is delayed until the Sync message is received

Copy Operations

CrateDB does not support the COPY sub-protocol.

Function Call

The function call sub-protocol is not supported since it’s a legacy feature.

Canceling Requests

Operations can be cancelled using the KILL statement, hence the CancelRequest message is unsupported. Consequently, the server won’t send a BackendKeyData message during connection initialization.

pg_catalog

For improved compatibility, the pg_catalog schema is implemented containing following tables:

pg_type

Some clients require the pg_catalog.pg_type in order to be able to stream arrays or other non-primitive types.

For compatibility reasons there is a trimmed down pg_type table available in CrateDB:

cr> select oid, typname, typarray, typelem, typlen from pg_catalog.pg_type order by oid;
+------+--------------+----------+---------+--------+
|  oid | typname      | typarray | typelem | typlen |
+------+--------------+----------+---------+--------+
|   16 | bool         |     1000 |       0 |      1 |
|   18 | char         |     1002 |       0 |      1 |
|   20 | int8         |     1016 |       0 |      8 |
|   21 | int2         |     1005 |       0 |      2 |
|   23 | int4         |     1007 |       0 |      4 |
|  114 | json         |      199 |       0 |     -1 |
|  199 | _json        |        0 |     114 |     -1 |
|  700 | float4       |     1021 |       0 |      4 |
|  701 | float8       |     1022 |       0 |      8 |
| 1000 | _bool        |        0 |      16 |     -1 |
| 1002 | _char        |        0 |      18 |     -1 |
| 1005 | _int2        |        0 |      21 |     -1 |
| 1007 | _int4        |        0 |      23 |     -1 |
| 1015 | _varchar     |        0 |    1043 |     -1 |
| 1016 | _int8        |        0 |      20 |     -1 |
| 1021 | _float4      |        0 |     700 |     -1 |
| 1022 | _float8      |        0 |     701 |     -1 |
| 1043 | varchar      |     1015 |       0 |     -1 |
| 1184 | timestamptz  |     1185 |       0 |      8 |
| 1185 | _timestamptz |        0 |    1184 |     -1 |
+------+--------------+----------+---------+--------+
SELECT 20 rows in set (... sec)

Note

This is just a snapshot of the table. Check table information_schema.columns to get information for all supported columns.

Show Transaction Isolation

For compatibility with JDBC the SHOW TRANSACTION ISOLATION LEVEL statement is implemented:

cr> show transaction isolation level;
+-----------------------+
| transaction_isolation |
+-----------------------+
| read uncommitted      |
+-----------------------+
SHOW 1 row in set (... sec)

BEGIN/COMMIT Statements

For compatibility with clients that use the Postgres wire protocol, such as the Golang lib/pq and pgx drivers, the full PostgreSQL syntax of the BEGIN and COMMIT statements is implemented, for example:

cr> BEGIN TRANSACTION ISOLATION LEVEL READ UNCOMMITTED,
...                   READ ONLY,
...                   NOT DEFERRABLE;
BEGIN OK, 0 rows affected  (... sec)

cr> COMMIT
COMMIT OK, 0 rows affected  (... sec)

Since CrateDB does not support transactions, both the COMMIT and BEGIN statement and any of its parameters are ignored.

Client Compatibility

JDBC

pgjdbc JDBC drivers version 9.4.1209 and above are compatible.

Limitations

  • reflection methods like conn.getMetaData().getTables(...) won’t work since the required tables are unavailable in CrateDB.

    As a workaround it’s possible to use SHOW TABLES or query the information_schema tables manually using SELECT statements.

  • OBJECT and GEO_SHAPE columns can be streamed as JSON but require pgjdbc version 9.4.1210 or newer.

  • Multidimensional arrays will be streamed as JSON encoded string to avoid a protocol limitation where all sub-arrays are required to have the same length.

  • The behavior of PreparedStatement.executeBatch in error cases depends on in which stage an error occurs: A BatchUpdateException is thrown if no processing has been done yet, whereas single operations failing after the processing started are indicated by an EXECUTE_FAILED (-3) return value.

  • Transaction limitations as described above.

  • Having escape processing enabled could prevent the usage of Object Literals in case an object key’s starting character clashes with a JDBC escape keyword (see also JDBC escape syntax). Currently, disabling escape processing will remedy this, but prevent the Extended Query API from working due to a bug at pgjdbc.

Connection Failover and Load Balancing

Connection failover and load balancing is supported as described here: PostgreSQL JDBC connection failover.

Note

It is not recommended to use the targetServerType parameter since CrateDB has no concept of master-replica nodes.

Implementation Differences

The PostgreSQL Wire Protocol makes it easy to use many PostgreSQL compatible tools and libraries directly with CrateDB. However, many of these tools assume that they are talking to PostgreSQL specifically, and thus rely on SQL extensions and idioms that are unique to PostgreSQL. Because of this, some tools or libraries may not work with other SQL databases such as CrateDB.

CrateDB’s SQL query engine enables real-time search & aggregations for online analytic processing (OLAP) and business intelligence (BI) with the benefit of the ability to scale horizontally. The use-cases of CrateDB are different than those of PostgreSQL, as CrateDB’s specialized storage schema and query execution engine address different requirements (see High Level Architecture).

The listed features below cover the main differences in implementation and dialect between CrateDB and PostgreSQL. A detailed comparison between CrateDB’s SQL dialect and standard SQL is defined in Compatibility.

COPY

CrateDB does not support the distinct sub-protocol that is used to serve COPY operations and provides another implementation for transferring bulk data using the COPY FROM and COPY TO statements.

Objects

The definition of structured values by using JSON types, composite types or HSTORE are not supported. CrateDB alternatively allows the definition of nested documents (of type object) that store fieldscontaining any CrateDB supported data type, including nested object types.

Type Casts

CrateDB accepts the Type Conversion syntax for conversion of one data type to another (see Value Expressions).

Arrays

Declaration of Arrays

While multidimensional arrays in PostgreSQL must have matching extends for each dimension, CrateDB allows different length nested arrays as this example shows:

cr> select [[1,2,3],[1,2]] from sys.cluster;
+---------------------+
| [[1, 2, 3], [1, 2]] |
+---------------------+
| [[1, 2, 3], [1, 2]] |
+---------------------+
SELECT 1 row in set (... sec)

Accessing Arrays

Fetching arbitrary rectangular slices of an array using lower-bound:upper-bound expression (see Arrays) in the array subscript is not supported.

Text Search Functions and Operators

The functions and operators provided by PostgreSQL for full-text search (see PostgreSQL Fulltext Search) are not compatible with those provided by CrateDB. For more information about the built-in full-text search in CrateDB refer to Fulltext Search.

If you are missing features, functions or dialect improvements and have a great use case for it, let us know on Github. We’re always improving and extending CrateDB, and we love to hear feedback.

Expression Evaluation

Unlike PostgreSQL, expressions are not evaluated if the query results in 0 rows either because of the table is empty or by a not matching where clause.