START TRANSACTION

CrateDB accepts the START TRANSACTION statement for compatibility with the PostgreSQL wire protocol. However, CrateDB does not support transactions and will silently ignore this statement. .. SEEALSO:

  1. :ref:`Appendix: SQL compatibility <crate_standard_sql>`

Synopsis

  1. START TRANSACTION [ transaction_mode [ , ...] ]

Where transaction_mode is one of:

  1. ISOLATION LEVEL isolation_level | (READ WRITE | READ ONLY) | [NOT] DEFERRABLE

Where isolation_level is one of:

  1. { SERIALIZABLE | REPEATABLE READ | READ COMMITTED | READ UNCOMMITTED }

Description

CrateDB will silently ignore the START TRANSACTION statement.

Parameters

transaction_mode

This parameter has no effect.