- Jul 22, 2014
-
-
Konstantin Osipov authored
Conflicts: doc/user/configuration-reference.xml doc/user/connectors.xml doc/user/databases.xml doc/user/server-administration.xml
-
Konstantin Osipov authored
-
- Jul 21, 2014
-
-
Konstantin Osipov authored
-
- Jul 18, 2014
-
-
ocelot-inc authored
-
Roman Tsisyk authored
-
Konstantin Osipov authored
-
Konstantin Osipov authored
Conflicts: src/box/lua/call.cc src/lua/box_net_box.lua test/box/call.result test/box/misc.result
-
Konstantin Osipov authored
-
Roman Tsisyk authored
-
Roman Tsisyk authored
Follow up fdc3d1dd commit
-
- Jul 17, 2014
-
-
Konstantin Osipov authored
-
Konstantin Osipov authored
-
Konstantin Osipov authored
-
Konstantin Osipov authored
Make status() a method. Update the docs.
-
Roman Tsisyk authored
-
Roman Tsisyk authored
This patch adds Test Anything Protocol (http://testanything.org/) producer. TAP is a standardized output format for unit tests.
-
- Jul 16, 2014
-
-
Konstantin Osipov authored
-
Konstantin Osipov authored
-
Konstantin Osipov authored
Ensure a transaction is not left hanging around when a session disconnects. Add basic tests for transactions.
-
ocelot-inc authored
-
Roman Tsisyk authored
-
Roman Tsisyk authored
-
Roman Tsisyk authored
-
Roman Tsisyk authored
-
Roman Tsisyk authored
Conflicts: src/box/replica.cc src/box/txn.cc src/iproto_constants.cc src/iproto_constants.h test/box/bad_trigger.result test/box/call.result test/lib/tarantool-python
-
- Jul 15, 2014
-
-
Konstantin Osipov authored
-
Konstantin Osipov authored
-
Konstantin Osipov authored
Implement transactions infrastructure for autocommit mode. Prepare txn.cc for multi-statement transactions.
-
Alexandr authored
-
- Jul 14, 2014
-
-
ocelot-inc authored
-
Roman Tsisyk authored
-
bigbes authored
-
Roman Tsisyk authored
This patch changes iproto codes enumeration scheme: * 0 - OK (indicates success result of DML or ADMIN commands) * [ 1, 128) - DML & ADMIN commands * [32768, 65535) - errors (1<< 15 | ER_XXX from errcode.h) Other ranges are reserved for future use.
-
Roman Tsisyk authored
-
Roman Tsisyk authored
-
- Jul 13, 2014
-
-
Konstantin Osipov authored
Refactor statement transaction lifecycle. Avoid nested statement transactions. Make sure there is no more than 1 statement transaction present in the system at the moment. Resolve the bugs this revealed: - in local hot standby we would parasite on the main or script fiber session to process requests. When an assert was added that there is no more than 1 transaction active at a given moment in time, it turned out that transactions running on behalf of local hot standby were running in the scope of session of the run_script or sched fibers. Create and use an own session there. - refactor session on_connect/on_disconnect trigger invocation: do not invoke these triggers for just any session, only for real connects/disconnects (iproto, admin). - split session creation/destruction and trigger invocation Conclude that session storage implementation needs to be done differently.
-