- Apr 08, 2014
-
-
Konstantin Osipov authored
tarantool_box without arguments runs in interactive mode. @todo: - log_level by default should be 'critical' - wal_mode by default should be 'none' - pid_file by default should be 'none' - readline should be called via coeio, to not block event loop while it's running
-
Konstantin Osipov authored
-
- Mar 27, 2014
-
-
Konstantin Osipov authored
See rationale for this fix in gh-223 Remove on the same token a buch of dead code for sandboxing and do a few renames.
-
- Mar 26, 2014
-
-
Konstantin Osipov authored
In preparation of removal of confetti and switching solely to Lua-based configuration file, reduce dependencies on struct tarantool_cfg and reorder server initialization, so that it can happen after the event loop has already been started.
-
Alexandr authored
-
Konstantin Osipov authored
Remove command line options: --cfg-get --check-config --config --init-storage - these are gone forever, in preparation for config-less start. --background -- move to tarantool.cfg for now, in the future it will be part of Lua config. Make #! mandatory - if the server is started without #!, it's only possible to query its version or get startup help (--version and --help are the only remaining supported options). When #! is present, do not parse options, pass them wholly to the script at hand. Add helper scripts to test suites, to start/stop the server. For now, the scripts are empty, in the future they will be merged with a respective config file.
-
Roman Tsisyk authored
-
- Mar 25, 2014
-
-
Roman Tsisyk authored
-
Roman Tsisyk authored
-
Konstantin Osipov authored
-
Konstantin Osipov authored
Conflicts: doc/user/lua-tutorial.xml doc/user/plugins.xml doc/user/stored-procedures.xml
-
Roman Tsisyk authored
-
Roman Tsisyk authored
* Change format of xlog/snap files to MsgPack-based format * Update replication to use IPROTO protocol * Rework replica bootstrap to process snapshot by rows * Add support for composite rows in fio_batch * Fix iproto->sync in SUBSCRIBE command
-
Konstantin Osipov authored
Conflicts: doc/user/data-model.xml doc/user/tutorial.xml
-
Konstantin Osipov authored
-
Roman Tsisyk authored
-
Roman Tsisyk authored
Conflicts: debian/tarantool-sql-module.install extra/rpm.spec.in src/lua/init.cc test/CMakeLists.txt
-
Konstantin Osipov authored
-
Konstantin Osipov authored
-
Konstantin Osipov authored
-
- Mar 24, 2014
-
-
Dmitry Simonenko authored
-
Dmitry Simonenko authored
refactory.
-
bigbes authored
* Rewrite box_net.{pg,mysql}.test.lua, so line wrappings won't matter. * Testing System: 'RelWithDebugInfo' closer to Release, than to Debug * Compiling on clang -> additional OP, cause of garbage after `iproto_request_type_strs` (Failed admin and other tests)
-
bigbes authored
-
- Mar 21, 2014
-
-
Konstantin Osipov authored
-
Konstantin Osipov authored
When panic() is called from a fiber != sched, we call atexit handlers and free all memory, including runtime memory, including the memory used for fiber stack. Thus essentially freeing memory the fiber's stack is using. The very next instruction using the stack gets a SIGSEGV afterwards. Perhaps don't be so strict about freeing resources at shutdown and do not shoot yourself in the foot.
-
bigbes authored
Conflicts: test/module/net_sql.common.lua test/module/net_sql.common.result test/module/net_sql.common.test test/module/net_sql.mysql.lua test/module/net_sql.mysql.result test/module/net_sql.mysql.skipcond test/module/net_sql.mysql.test test/module/net_sql.pg.lua test/module/net_sql.pg.result test/module/net_sql.pg.skipcond test/module/net_sql.pg.test test/test-run.py
-
bigbes authored
-
esha authored
purpose: OOS-build tests fail
-
bigbes authored
Conflicts: .travis.yml client/tarantool/tc.c client/tarantool/tc_pager.c src/lua/yaml.cc
-
bigbes authored
-
- Mar 20, 2014
-
-
Roman Tsisyk authored
-
Roman Tsisyk authored
Needed for server/pg_type.h header
-
Roman Tsisyk authored
-
Roman Tsisyk authored
CMake is shipped with broken PosgreSQL script in most distros. I had to copy this script and patch it to properly support new versions of PostgreSQL.
-
Roman Tsisyk authored
* Install *.lua modules into ${DATADIR}/tarantool/1.5 and *.so modules into ${LIBDIR}/tarantool/1.5 * Fix default package.path and package.cpath * Install Lua headers to ${INCLUDE_DIR}/tarantool/1.5 * Install config.h to ${INCLUDE_DIR}/tarantool/1.5 * Add a new package - tarantool-dev (server development headers) * Use RPM Macroses in rpm.spec * Fix tarball generation for Debian * Use GNUInstallDirs.cmake to setup directories
-
esha authored
purpose: OOS-build tests fail
-
Dmitry Simonenko authored
to support multiple engines.
-
bigbes authored
-
- Mar 17, 2014
-
-
Konstantin Osipov authored
-