Branch: refs/heads/master
Home: https://github.com/tarantool/tarantool
Commit: 90ebc52556570901998bb7cfbbe5af358a4875d5
https://github.com/tarantool/tarantool/commit/90ebc52556570901998bb7cfbbe5af358a4875d5
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-26 (Mon, 26 Aug 2013)
Changed paths:
M CMakeLists.txt
M client/tarantool/CMakeLists.txt
M client/tarantool/tc.c
M client/tarantool/tc_admin.c
M client/tarantool/tc_cli.c
M client/tarantool/tc_cli.h
A cmake/BuildLibYAML.cmake
M include/fiber.h
A include/lua/admin.h
A include/lua/fiber.h
M include/lua/init.h
A include/lua/plugin.h
A include/lua/yaml.h
M src/CMakeLists.txt
M src/admin.cc
R src/admin.rl
M src/box/lua/misc.lua
M src/errinj.cc
M src/fiber.cc
A src/lua/admin.cc
A src/lua/fiber.cc
M src/lua/info.cc
M src/lua/init.cc
A src/lua/plugin.cc
M src/lua/slab.cc
A src/lua/yaml.cc
M src/tarantool.cc
M test/lib/admin_connection.py
A third_party/lua-yaml/HISTORY
A third_party/lua-yaml/LICENSE
A third_party/lua-yaml/LICENSE.LibYAML
A third_party/lua-yaml/README
A third_party/lua-yaml/README.LibYAML
A third_party/lua-yaml/TODO
A third_party/lua-yaml/api.c
A third_party/lua-yaml/b64.c
A third_party/lua-yaml/b64.h
A third_party/lua-yaml/dumper.c
A third_party/lua-yaml/emitter.c
A third_party/lua-yaml/loader.c
A third_party/lua-yaml/lyaml.c
A third_party/lua-yaml/lyaml.h
A third_party/lua-yaml/parser.c
A third_party/lua-yaml/reader.c
A third_party/lua-yaml/scanner.c
A third_party/lua-yaml/writer.c
A third_party/lua-yaml/yaml.h
A third_party/lua-yaml/yaml_private.h
Log Message:
-----------
lua-console: make admin console work entirely under lua.
Integrate libyaml instead of internal yaml formaters.
changelog:
* fixed i64 convertion bug
* refactored bindings to new admin .info() scheme
* moved lua plugin api to separate file
* moved lua fiber api to separate file
* slab binding refactored
* added fiber lua bindings
* rewriten admin reply handler
* proper yaml end-of-document formater
* proper server error formater
* fixed bug with leftover data on stack on exception error
* added support of i64 types to lyyaml
* removed couple of box.show_ bindings
* console client fixes to support new scheme
This push has a yet broken test's.
Commit: 93f8cf3f11f1286d55e41e153f5a77345c454843
https://github.com/tarantool/tarantool/commit/93f8cf3f11f1286d55e41e153f5a77345c454843
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-26 (Mon, 26 Aug 2013)
Changed paths:
M cfg/core_cfg.cfg_tmpl
M cfg/tarantool_box_cfg.c
M cfg/tarantool_box_cfg.h
M client/tarancheck/tc_generate.c
M client/tarancheck/tc_space.c
M client/tarancheck/tc_space.h
M client/tarancheck/tc_verify.c
M client/tarantar/main.c
M client/tarantar/space.c
M client/tarantar/space.h
M cmake/compiler.cmake
M doc/user/stored-procedures.xml
A extra/schema_erase.lua
A extra/schema_fill.lua
M include/errcode.h
M include/memcached.h
M src/box/CMakeLists.txt
A src/box/alter.cc
A src/box/alter.h
M src/box/box.cc
M src/box/box_cfg.cfg_tmpl
M src/box/box_lua.cc
M src/box/box_lua_space.cc
M src/box/key_def.cc
M src/box/key_def.h
M src/box/lua/box.lua
A src/box/lua/schema.lua
M src/box/request.cc
M src/box/schema.cc
M src/box/schema.h
M src/box/space.cc
M src/box/space.h
M src/box/tuple.cc
M src/box/tuple.h
M src/box/txn.cc
M src/box/txn.h
M src/lua/init.cc
M src/memcached.cc
M src/tarantool.cc
M test/lib/sql_ast.py
Log Message:
-----------
Implement the new data dictionary.
Store the information about spaces in a pre-recreated
system space.
https://blueprints.launchpad.net/tarantool/+spec/space-ddl
Remove space configuration from confetti.
Use transaction and space triggers to run post-DML
actions to perform DDL changes.
Implement a Lua FFI binding to disable tests.
Temporarily disable space-loading code in tarancheck
and tarantar (this breaks them).
Mostly all tests are broken.
Memcached is disabled (non-functional).
Commit: 0b93523ffab325a8efa4b1ae6bdcd267fb52c4c1
https://github.com/tarantool/tarantool/commit/0b93523ffab325a8efa4b1ae6bdcd267fb52c4c1
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-26 (Mon, 26 Aug 2013)
Changed paths:
M third_party/lua-yaml/lyaml.c
Log Message:
-----------
Fix libyaml compiler warnings.
Commit: f391c8476a32d994eeb8c016d5928411e6a7e9a1
https://github.com/tarantool/tarantool/commit/f391c8476a32d994eeb8c016d5928411e6a7e9a1
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-26 (Mon, 26 Aug 2013)
Changed paths:
M extra/schema_erase.lua
M extra/schema_fill.lua
M src/box/alter.cc
M test/big/sql.result
M test/big/sql.test.py
M test/big/tarantool.cfg
Log Message:
-----------
Make big/sql.test pass.
Still some issues with Lua console to fix, but transfer
big/sql.test to the new data dictionary at least.
Fix a bug found in the process that when altering an index
from unique to non unique the index is not rebuilt.
Remove 'lua ' prefix from schema_erase/schema_fill classes.
Commit: 913c18389eff392b8b6b49e5b53a64ddac815892
https://github.com/tarantool/tarantool/commit/913c18389eff392b8b6b49e5b53a64ddac815892
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M src/box/lua/box.lua
M src/box/lua/schema.lua
M test/big/hash.result
M test/big/hash.test.lua
M test/big/lua/utils.lua
M test/big/sql.result
M third_party/lua-yaml/emitter.c
Log Message:
-----------
Convert big/hash.test to lua.
Add replace_if_exists as a stock method of a space.
Patch lua-yaml emitter to add \n after ---.
Commit: 20fad78eea246f154be8734f5a38ca20953f5b9f
https://github.com/tarantool/tarantool/commit/20fad78eea246f154be8734f5a38ca20953f5b9f
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M src/admin.cc
M src/lua/init.cc
M third_party/lua-yaml/lyaml.c
Log Message:
-----------
lua-plus-dict: convert any tuple to table for proper yaml output,
fix end-of-document marker for multi documents return.
Commit: 451a492306527d981a15c73e552393169776e1d6
https://github.com/tarantool/tarantool/commit/451a492306527d981a15c73e552393169776e1d6
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M test/lib/tarantool_server.py
Log Message:
-----------
Merge branch 'master' into lua-plus-dict
Commit: f2b5ac73dc0cf6b025af5045e43ca63f67b491fb
https://github.com/tarantool/tarantool/commit/f2b5ac73dc0cf6b025af5045e43ca63f67b491fb
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M src/lua/init.cc
M third_party/lua-yaml/lyaml.c
Log Message:
-----------
lua-plus-dict: use old tuple print format
Commit: 185cc9acaf7b8452a148b6974ffe60b622d367ff
https://github.com/tarantool/tarantool/commit/185cc9acaf7b8452a148b6974ffe60b622d367ff
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M test/lib/tarantool_server.py
Log Message:
-----------
Merge branch 'lua-plus-dict' of github.com:mailru/tarantool into lua-plus-dict
Commit: 3d2b0067089569c152268779a33a105a3cd03b6c
https://github.com/tarantool/tarantool/commit/3d2b0067089569c152268779a33a105a3cd03b6c
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M third_party/lua-yaml/emitter.c
M third_party/lua-yaml/lyaml.c
M third_party/lua-yaml/yaml.h
Log Message:
-----------
lua-plus-dict: patch libyaml to support verbatim (raw) value output
Commit: fcefbd2ad0a6ce723527daa8acc64e51ef95a2b8
https://github.com/tarantool/tarantool/commit/fcefbd2ad0a6ce723527daa8acc64e51ef95a2b8
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M test/big/hash.result
M test/big/hash_multipart.result
M test/big/hash_multipart.test.lua
M test/big/sql.result
Log Message:
-----------
Convert big/hash, big/hash_multipart, big/sql to the new datadict and lua
console.
Commit: 6546bee931ea3bfe844ff39321eecbcf2ccf6098
https://github.com/tarantool/tarantool/commit/6546bee931ea3bfe844ff39321eecbcf2ccf6098
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M test/big/bitset.result
M test/big/bitset.test.lua
M test/big/lua/bitset.lua
M test/big/lua/utils.lua
Log Message:
-----------
Convert bitset.lua to the new test output format and the new data dictionary.
Commit: 1683c0eb05ac891494b4602d312c0da1e2168610
https://github.com/tarantool/tarantool/commit/1683c0eb05ac891494b4602d312c0da1e2168610
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M test/big/iterator.result
M test/big/iterator.test.lua
Log Message:
-----------
Convert iterator.test to the new lua console and data dictionary.
Commit: e124295133e7c1e10010dc81281f7cb19b812595
https://github.com/tarantool/tarantool/commit/e124295133e7c1e10010dc81281f7cb19b812595
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M src/box/lua/schema.lua
M test/big/tree_pk.result
M test/big/tree_pk.test.lua
Log Message:
-----------
Convert tree_pk.test.lua to the new lua console and data dictionary.
Fix a bug with missing tonumber() in space:select_range().
Commit: 21dca81934c7551a67dc441ae1bedf7647613c1b
https://github.com/tarantool/tarantool/commit/21dca81934c7551a67dc441ae1bedf7647613c1b
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M test/big/tree_pk_multipart.result
M test/big/tree_pk_multipart.test.lua
Log Message:
-----------
Convert tree_pk_multipart.test to the new lua console and the new data
dictionary.
Commit: 9fa50b49e42f6de03d357f71d454735d944d9bc9
https://github.com/tarantool/tarantool/commit/9fa50b49e42f6de03d357f71d454735d944d9bc9
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-27 (Tue, 27 Aug 2013)
Changed paths:
M test/big/tree_variants.result
M test/big/tree_variants.test.lua
Log Message:
-----------
Convert tree_variants.test to the new data dictionary and console.
Commit: aba045a166d919b6c145780ec7737b6ca8bc353a
https://github.com/tarantool/tarantool/commit/aba045a166d919b6c145780ec7737b6ca8bc353a
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-28 (Wed, 28 Aug 2013)
Changed paths:
M include/tarantool/util.h
M src/box/lua/misc.lua
M src/box/tuple.cc
M src/lua/fiber.cc
M src/lua/init.cc
M src/util.cc
Log Message:
-----------
lua-plus-dict: add new tuple print format, cover output into lua table
for proper yaml output
Commit: 95f9e77e42131170697d98bd0350afb9655d0453
https://github.com/tarantool/tarantool/commit/95f9e77e42131170697d98bd0350afb9655d0453
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-28 (Wed, 28 Aug 2013)
Changed paths:
M test/big/bitset.result
M test/big/hash.result
M test/big/hash_multipart.result
M test/big/iterator.result
M test/big/sql.result
M test/big/tree_pk.result
M test/big/tree_pk_multipart.result
M test/big/tree_variants.result
Log Message:
-----------
lua-plus-dict: convert 'big' tests to new tuple output format
Commit: 8ebd9090b6e9bd9e56be7457008611b3d4c20af0
https://github.com/tarantool/tarantool/commit/8ebd9090b6e9bd9e56be7457008611b3d4c20af0
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-28 (Wed, 28 Aug 2013)
Changed paths:
M src/lua/admin.cc
M test/box/admin.result
M test/box/admin.test.py
M test/box/admin_coredump.result
M test/box/admin_coredump.test.lua
Log Message:
-----------
lua-plus-dict: convert admin tests to the new lua console
and the new data dictionary
Commit: 6ad74d50d6ca51e01c411fa4dae2d11963caae1a
https://github.com/tarantool/tarantool/commit/6ad74d50d6ca51e01c411fa4dae2d11963caae1a
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-28 (Wed, 28 Aug 2013)
Changed paths:
M include/tarantool/util.h
M src/lua/fiber.cc
M src/util.cc
M test/big/lua.result
M test/big/lua.test.lua
M test/big/lua/index_random_test.lua
M test/big/lua/push.lua
M test/big/tree_pk.result
M test/big/tree_pk.test.lua
M test/big/tree_pk_multipart.result
M test/big/tree_pk_multipart.test.lua
Log Message:
-----------
Convert lua.test to the new lua-console format and the new data dictionary.
Commit: b29ba872c97980f69973c6c748e4252299be1197
https://github.com/tarantool/tarantool/commit/b29ba872c97980f69973c6c748e4252299be1197
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-29 (Thu, 29 Aug 2013)
Changed paths:
M test/big/lua.result
M test/big/lua.test.lua
M test/big/sql.result
M test/big/sql.test.py
M test/lib/tarantool_server.py
Log Message:
-----------
Fix ./test-run --valgrind. Remove extra nesting of multi-return.
Commit: 13e994c9de10503ba888856f0151f05fb46a7f43
https://github.com/tarantool/tarantool/commit/13e994c9de10503ba888856f0151f05fb46a7f43
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-29 (Thu, 29 Aug 2013)
Changed paths:
M src/box/box_lua_space.cc
M test/box/bug726778.cfg
M test/box/tarantool.cfg
M test/box/tarantool_bug750658.cfg
Log Message:
-----------
lua-plus-dict: fix assert on space to lua export while calling by
dostring() from init.lua, remove space declaration from a configs
Commit: 8476d3c8c9877d57a2f53e8eacb720ae8df3da3d
https://github.com/tarantool/tarantool/commit/8476d3c8c9877d57a2f53e8eacb720ae8df3da3d
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-29 (Thu, 29 Aug 2013)
Changed paths:
M src/box/box_lua_space.cc
M test/box/bug726778.cfg
M test/box/tarantool.cfg
M test/box/tarantool_bug750658.cfg
Log Message:
-----------
Merge branch 'lua-plus-dict' of github.com:tarantool/tarantool into
lua-plus-dict
Commit: efb68b4605d59f6051e8e0a364d7909ea4eb37f1
https://github.com/tarantool/tarantool/commit/efb68b4605d59f6051e8e0a364d7909ea4eb37f1
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-29 (Thu, 29 Aug 2013)
Changed paths:
M src/sio.cc
M test/lib/tarantool_server.py
Log Message:
-----------
Merge remote-tracking branch 'origin/master' into lua-plus-dict
Commit: f026deaf311940c13126b030848d2f8b18789144
https://github.com/tarantool/tarantool/commit/f026deaf311940c13126b030848d2f8b18789144
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-29 (Thu, 29 Aug 2013)
Changed paths:
M src/box/lua/schema.lua
Log Message:
-----------
Merge remote-tracking branch 'origin/master' into lua-plus-dict
Conflicts:
src/box/lua/box.lua
Commit: 6efaeaaf0e34ad8d830a821c6625fce31f20a57c
https://github.com/tarantool/tarantool/commit/6efaeaaf0e34ad8d830a821c6625fce31f20a57c
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-29 (Thu, 29 Aug 2013)
Changed paths:
M test/wal/lua.result
A test/wal/lua.test.lua
R test/wal/lua.test.py
M test/wal/oom.result
A test/wal/oom.test.lua
R test/wal/oom.test.py
M test/wal/tarantool.cfg
M test/wal/wal_mode.result
A test/wal/wal_mode.test.lua
R test/wal/wal_mode.test.py
Log Message:
-----------
Convert 'wal' suite to Lua, lua-console, dict-v6.
Commit: 077697d2afa1d033436d55d7cbd9628d52d2f6dd
https://github.com/tarantool/tarantool/commit/077697d2afa1d033436d55d7cbd9628d52d2f6dd
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-29 (Thu, 29 Aug 2013)
Changed paths:
M src/bootstrap.snap
M test/big/iterator.result
M test/big/iterator.test.lua
M test/big/lua.result
M test/big/lua.test.lua
Log Message:
-----------
Actually add the new bootstrap snapshot which contains all the system space
data.
wal/big tests worked with system spaces which had no system spaces
data. Which is good. But not the way it is supposed to work.
Commit: b3b8e519a7945f0ab9e08f29f0f7f8c43ec169a3
https://github.com/tarantool/tarantool/commit/b3b8e519a7945f0ab9e08f29f0f7f8c43ec169a3
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-29 (Thu, 29 Aug 2013)
Changed paths:
R test/box/00000000000000000001.snap
M test/box/sql.result
M test/box/sql.test.py
Log Message:
-----------
Convert box/sql.test to the new data dictionary and new lua console.
Commit: 121ab6d9020b09401e3de60e24e63e402708338b
https://github.com/tarantool/tarantool/commit/121ab6d9020b09401e3de60e24e63e402708338b
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-29 (Thu, 29 Aug 2013)
Changed paths:
M test/box/info.result
M test/box/info.test.lua
Log Message:
-----------
Conver box/info.test.lua to the new data dictionary/Lua console.
Commit: 444850708fe6c2138780d4c5bd3a473f6346bbe3
https://github.com/tarantool/tarantool/commit/444850708fe6c2138780d4c5bd3a473f6346bbe3
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M test/connector_c/cfg/master.cfg
M test/connector_c/cfg/tarantool.cfg
M test/connector_c/connector.result
M test/connector_c/connector.test.py
M test/connector_c/tp.result
M test/connector_c/tp.test.py
M test/connector_c/update.result
M test/connector_c/update.test.py
Log Message:
-----------
lua-plus-dict: Convert connector_c/ to the new data dictionary and new
lua console.
Commit: c1597d89f45d82fb6b71d762ea94592ca2c922e9
https://github.com/tarantool/tarantool/commit/c1597d89f45d82fb6b71d762ea94592ca2c922e9
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M .gitignore
R test/box/CMakeLists.txt
R test/box/protocol.c
R test/box/protocol.result
R test/box/protocol.test.py
M test/connector_c/CMakeLists.txt
A test/connector_c/protocol.c
A test/connector_c/protocol.result
A test/connector_c/protocol.test.py
Log Message:
-----------
Move box/protocol.test to connector_c suite.
Commit: 2a5b32776ca8641fc17ad96550742e6870894645
https://github.com/tarantool/tarantool/commit/2a5b32776ca8641fc17ad96550742e6870894645
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M test/box/box_fiber.lua
M test/box/lua.result
M test/box/lua.test.py
M test/box/lua_box_uuid.result
M test/box/lua_misc.result
M test/box/lua_misc.test.lua
M test/box/suite.ini
M test/box/test_init.lua
Log Message:
-----------
Convert box/lua.test.py, lua_misc.test.lua and lua_box_uuid to the new data
dictionary/Lua console.
Commit: 262ceb37c3d83b9e4bbabe64a644e66543143cf0
https://github.com/tarantool/tarantool/commit/262ceb37c3d83b9e4bbabe64a644e66543143cf0
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M .gitignore
R test/box/CMakeLists.txt
R test/box/protocol.c
R test/box/protocol.result
R test/box/protocol.test.py
M test/connector_c/CMakeLists.txt
A test/connector_c/protocol.c
A test/connector_c/protocol.result
A test/connector_c/protocol.test.py
Log Message:
-----------
Merge branch 'lua-plus-dict' of github.com:mailru/tarantool into lua-plus-dict
Commit: 45bb6a9d68e4d10ab7e9eff1053d4733763242ac
https://github.com/tarantool/tarantool/commit/45bb6a9d68e4d10ab7e9eff1053d4733763242ac
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M include/errinj.h
M src/CMakeLists.txt
M src/box/lua/misc.lua
M src/errinj.cc
M src/lua/admin.cc
M src/lua/init.cc
M test/box/errinj.test.lua
Log Message:
-----------
lua-plus-dict: Convert box/errinj to the new data dictionary and new
lua console. Refactor errinj lua bindings.
Commit: d04470fb97ca357085427f37bbf8dbb368e1a58f
https://github.com/tarantool/tarantool/commit/d04470fb97ca357085427f37bbf8dbb368e1a58f
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
A include/lua/errinj.h
A src/lua/errinj.cc
Log Message:
-----------
lua-plus-dict: added errinj related files.
Commit: 5c9e260f604e0f8da49a9db8a196f942817949a1
https://github.com/tarantool/tarantool/commit/5c9e260f604e0f8da49a9db8a196f942817949a1
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M test/box/admin.result
M test/box/admin.test.py
Log Message:
-----------
Improve regular expressions in admin.test to work with multile output.
Commit: 5bb2ecdc4266a8b4824b61de9088144768ea2ead
https://github.com/tarantool/tarantool/commit/5bb2ecdc4266a8b4824b61de9088144768ea2ead
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M include/errinj.h
A include/lua/errinj.h
M src/CMakeLists.txt
M src/box/lua/misc.lua
M src/errinj.cc
M src/lua/admin.cc
A src/lua/errinj.cc
M src/lua/init.cc
M test/box/box_fiber.lua
M test/box/errinj.test.lua
M test/box/lua.result
M test/box/lua.test.py
M test/box/lua_box_uuid.result
M test/box/lua_misc.result
M test/box/lua_misc.test.lua
M test/box/suite.ini
M test/box/test_init.lua
Log Message:
-----------
Merge branch 'lua-plus-dict' of github.com:tarantool/tarantool into
lua-plus-dict
Commit: fe4cb9465d508ad9079c42a98815e4a986781061
https://github.com/tarantool/tarantool/commit/fe4cb9465d508ad9079c42a98815e4a986781061
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
A include/lua/ipc.h
A include/lua/socket.h
M src/CMakeLists.txt
M src/box/lua/misc.lua
M src/lua/init.cc
A src/lua/ipc.cc
R src/lua/lua_ipc.cc
R src/lua/lua_ipc.h
R src/lua/lua_socket.cc
R src/lua/lua_socket.h
A src/lua/socket.cc
M test/CMakeLists.txt
Log Message:
-----------
lua-plus-dict: remove lua_ prefix from lua_ipc and lua_socket files.
Commit: 2cc3cb05d8a45ff231f41a826407d25c9ed5dc28
https://github.com/tarantool/tarantool/commit/2cc3cb05d8a45ff231f41a826407d25c9ed5dc28
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M test/box/admin.result
M test/box/admin.test.py
Log Message:
-----------
Merge branch 'lua-plus-dict' of github.com:mailru/tarantool into lua-plus-dict
Commit: 20efa827f6b3bb8f2e76eb3feb647b7d965d4b81
https://github.com/tarantool/tarantool/commit/20efa827f6b3bb8f2e76eb3feb647b7d965d4b81
Author: Dmitry Simonenko <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M src/box/lua/misc.lua
M src/lua/init.cc
M test/box/admin.result
M test/box/admin.test.py
M test/box/errinj.result
M test/box/lua.result
M test/box/lua.test.py
Log Message:
-----------
lua-plus-dict: move box.cfg_reload to box.cfg.reload, update tests.
Commit: ca0b9b7c96d186de74bd8eeaf4160df6f37ea6a4
https://github.com/tarantool/tarantool/commit/ca0b9b7c96d186de74bd8eeaf4160df6f37ea6a4
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M cfg/warning.c
M include/lua/init.h
M src/lua/admin.cc
M src/lua/init.cc
M src/lua/plugin.cc
M test/box/admin.result
M test/box/lua.result
M test/box/lua.test.py
M test/box/reconfigure.result
M test/box/reconfigure.test.py
M test/box/suite.ini
M test/box/tarantool_bad1.cfg
R test/box/tarantool_bad2.cfg
R test/box/tarantool_bad3.cfg
R test/box/tarantool_bad4.cfg
R test/box/tarantool_bad5.cfg
M test/box/tarantool_good.cfg
M test/lib/tarantool_server.py
Log Message:
-----------
Fix reconfigure.test. Remove obsolete configurations.
Fix confetti error output. Remove redundant cfg_reload(). Make sure we
produce a Lua error on error.
Remove duplicate code.
Style renames.
Commit: e654a7c2a33ff0e89c10ec9f18717908dd6b73ab
https://github.com/tarantool/tarantool/commit/e654a7c2a33ff0e89c10ec9f18717908dd6b73ab
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M test/box/snapshot.result
M test/box/snapshot.test.py
Log Message:
-----------
Convert snapshot.test to the new format.
Commit: 007894cf34216511c8d1641e914fce0ebc99a292
https://github.com/tarantool/tarantool/commit/007894cf34216511c8d1641e914fce0ebc99a292
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-30 (Fri, 30 Aug 2013)
Changed paths:
M test/box/fiber.result
M test/box/fiber.test.lua
M test/box/stat.result
M test/box/stat.test.py
Log Message:
-----------
Convert fiber.test.ua and stat.test.py to new data dictionary and lua console.
Commit: 0034ebb0087f7153a14ea623086dc9ea8be5ec5e
https://github.com/tarantool/tarantool/commit/0034ebb0087f7153a14ea623086dc9ea8be5ec5e
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-31 (Sat, 31 Aug 2013)
Changed paths:
M test/box/ipc.result
M test/box/ipc.test.lua
Log Message:
-----------
Convert ipc.test to lua-console.
Commit: 60cc992d0d435a9952673575855d199182d14931
https://github.com/tarantool/tarantool/commit/60cc992d0d435a9952673575855d199182d14931
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-31 (Sat, 31 Aug 2013)
Changed paths:
M test/box/net.box.result
M test/box/net.box.test.lua
Log Message:
-----------
Convert net.box.test.lua to new lua console
Commit: 82d74d8dd3431f11c4b05fd19e9bab493ea0882c
https://github.com/tarantool/tarantool/commit/82d74d8dd3431f11c4b05fd19e9bab493ea0882c
Author: Konstantin Osipov <[email protected]>
Date: 2013-08-31 (Sat, 31 Aug 2013)
Changed paths:
M test/box/suite.ini
Log Message:
-----------
Disable failing tests.
Compare:
https://github.com/tarantool/tarantool/compare/2d35b0966612...82d74d8dd343
_______________________________________________
Mailing list: https://launchpad.net/~tarantool-developers
Post to : [email protected]
Unsubscribe : https://launchpad.net/~tarantool-developers
More help : https://help.launchpad.net/ListHelp