- Jul 18, 2014
-
-
Roman Tsisyk authored
Follow up fdc3d1dd commit
-
- Jul 17, 2014
-
-
Konstantin Osipov authored
-
Konstantin Osipov authored
Make status() a method. Update the docs.
-
Roman Tsisyk authored
-
- Jul 16, 2014
-
-
Konstantin Osipov authored
Ensure a transaction is not left hanging around when a session disconnects. Add basic tests for transactions.
-
Roman Tsisyk authored
-
Roman Tsisyk authored
-
Roman Tsisyk authored
-
- Jul 15, 2014
-
-
Konstantin Osipov authored
Implement transactions infrastructure for autocommit mode. Prepare txn.cc for multi-statement transactions.
-
- Jul 14, 2014
-
-
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.
-
- Jul 11, 2014
-
-
Konstantin Osipov authored
Every fiber which may work with box needs to have a session, since it's stores user id and the current transaction.
-
- Jul 10, 2014
-
-
Roman Tsisyk authored
-
Roman Tsisyk authored
-
Dmitry E. Oboukhov authored
-
- Jul 09, 2014
-
-
Dmitry E. Oboukhov authored
-
Dmitry E. Oboukhov authored
-
Roman Tsisyk authored
This patch adds a new implementation of UUID library. New library generates RFC4122 compatible random-based (version 4) UUIDs using data from /dev/(u)random. The uuidgen(2) syscall is also supported on BSD system. `struct tt_uuid` redefined from RFC4122. Complimentary functions rewrotten to remove dependecy on e2fs libuuid. Lua bindings refactored to use new library and support all features. Closes #317
-
Konstantin Osipov authored
-
Konstantin Osipov authored
-
- Jul 07, 2014
-
-
Konstantin Osipov authored
-
Konstantin Osipov authored
Fix Mac OS X Lion build by not adding -rdynamic by default. Only use -rdynamic on Darwin (Konstantin Knizhnik's Mac).
-
- Jul 03, 2014
-
-
Konstantin Osipov authored
-
- Jul 01, 2014
-
-
Dmitry E. Oboukhov authored
-
Roman Tsisyk authored
This patch also fixed bug with schema parsing in port_uri.rl
-
Roman Tsisyk authored
-
Roman Tsisyk authored
See #347
-
Roman Tsisyk authored
This patch changes iproto codes enumeration scheme: * 0 - OK (indicates success result of DML or ADMIN commands) * [ 1, 1<<14) - DML & ADMIN commands * [1<<14, 1<<15) - recoverable errors (e.g. memory issue) * [1<<15, 1<<16) - unrecoverable errors (e.g. duplicate key)
-
Alexandr authored
-
- Jun 30, 2014
-
-
Roman Tsisyk authored
-
- Jun 28, 2014
-
-
Konstantin Osipov authored
-
Konstantin Osipov authored
(Crash on rename index). Do not invalidate a reference to key_def in alter space, when preserving the old index. Instead, update the old key def with new parameters.
-
- Jun 27, 2014
-
-
Roman Tsisyk authored
-
Roman Tsisyk authored
See #347
-
Roman Tsisyk authored
See #347
-
Roman Tsisyk authored
-
Roman Tsisyk authored
-
- Jun 26, 2014
-
-
Konstantin Osipov authored
-