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
Showing
- extra/lempar.c 1 addition, 1 deletionextra/lempar.c
- extra/mkkeywordhash.c 2 additions, 2 deletionsextra/mkkeywordhash.c
- src/box/sql/expr.c 15 additions, 6 deletionssrc/box/sql/expr.c
- src/box/sql/parse.y 4 additions, 8 deletionssrc/box/sql/parse.y
- test/sql-tap/analyze3.test.lua 4 additions, 4 deletionstest/sql-tap/analyze3.test.lua
- test/sql-tap/check.test.lua 1 addition, 1 deletiontest/sql-tap/check.test.lua
- test/sql-tap/count.test.lua 1 addition, 1 deletiontest/sql-tap/count.test.lua
- test/sql-tap/delete3.test.lua 1 addition, 1 deletiontest/sql-tap/delete3.test.lua
- test/sql-tap/fkey4.test.lua 2 additions, 2 deletionstest/sql-tap/fkey4.test.lua
- test/sql-tap/gh-2931-savepoints.test.lua 1 addition, 1 deletiontest/sql-tap/gh-2931-savepoints.test.lua
- test/sql-tap/gh2140-trans.test.lua 4 additions, 4 deletionstest/sql-tap/gh2140-trans.test.lua
- test/sql-tap/gh2964-abort.test.lua 1 addition, 1 deletiontest/sql-tap/gh2964-abort.test.lua
- test/sql-tap/icu.test.lua 1 addition, 1 deletiontest/sql-tap/icu.test.lua
- test/sql-tap/identifier-characters.test.lua 1 addition, 1 deletiontest/sql-tap/identifier-characters.test.lua
- test/sql-tap/in1.test.lua 1 addition, 1 deletiontest/sql-tap/in1.test.lua
- test/sql-tap/in2.test.lua 1 addition, 1 deletiontest/sql-tap/in2.test.lua
- test/sql-tap/index1.test.lua 3 additions, 3 deletionstest/sql-tap/index1.test.lua
- test/sql-tap/index2.test.lua 1 addition, 1 deletiontest/sql-tap/index2.test.lua
- test/sql-tap/index4.test.lua 5 additions, 5 deletionstest/sql-tap/index4.test.lua
- test/sql-tap/intpkey.test.lua 1 addition, 1 deletiontest/sql-tap/intpkey.test.lua
Loading
Please register or sign in to comment