Skip to content
Snippets Groups Projects
Commit a00a128d authored by N.Tatunov's avatar N.Tatunov Committed by Kirill Yukhin
Browse files

sql: remove 'BEGIN TRANSACTION'

Previously "BEGIN" / "BEGIN TRANSACTION", "COMMIT TRANSACTION" /
"END" / "END TRANSACTION", "ROLLBACK TRANSACTION" could be used
to handle transactions. By changing these commands syntax in
parser we're aiming on getting closer to ANSI SQL. Also found
initialization in ifdef that caused some problems with error
messages in occasions when the wrong syntax was used.

With the patch applied only following commands can be used:
 - "START TRANSACTION" to begin transaction.
 - "COMMIT" to end transaction.
 - "ROLLBACK" to rollback transaction without savepoints.
 - "ROLLBACK TO .." to rollback transaction to savepoint.

Closes #2164
parent c8ea9483
No related branches found
No related tags found
No related merge requests found
Showing
with 51 additions and 46 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment