Tarantool development patches archive
 help / color / mirror / Atom feed
* [Tarantool-patches] [PATCH v5 0/3] Introduce _session_setting system space
@ 2019-12-27 14:05 imeevma
  2019-12-27 14:05 ` [Tarantool-patches] [PATCH v5 1/3] box: introduce 'virtual' engine imeevma
                   ` (3 more replies)
  0 siblings, 4 replies; 15+ messages in thread
From: imeevma @ 2019-12-27 14:05 UTC (permalink / raw)
  To: korablev; +Cc: tarantool-patches

This patch-set creates _session_settings system space. This space
is used to view and change session settings.

https://github.com/tarantool/tarantool/issues/4511
https://github.com/tarantool/tarantool/tree/imeevma/gh-4511-new-engine

Mergen Imeev (3):
  box: introduce 'virtual' engine
  box: introduce _session_settings system space
  box: add SQL settings to _session_settings

 src/box/CMakeLists.txt                             |   2 +
 src/box/bootstrap.snap                             | Bin 5921 -> 5975 bytes
 src/box/box.cc                                     |   4 +
 src/box/errcode.h                                  |   1 +
 src/box/lua/space.cc                               |   2 +
 src/box/lua/upgrade.lua                            |  15 +
 src/box/schema_def.h                               |   8 +
 src/box/session_settings.c                         | 472 +++++++++++++++++++++
 src/box/session_settings.h                         |  70 +++
 src/box/sql.c                                      |   5 +
 src/box/sql/build.c                                | 222 ++++++++++
 src/box/virtual_engine.c                           | 135 ++++++
 src/box/virtual_engine.h                           |  53 +++
 test/app-tap/tarantoolctl.test.lua                 |   4 +-
 test/box-py/bootstrap.result                       |   3 +
 test/box/access_sysview.result                     |   6 +-
 test/box/alter.result                              |   5 +-
 ...h-4511-access-settings-from-any-frontend.result | 273 ++++++++++++
 ...4511-access-settings-from-any-frontend.test.lua | 106 +++++
 test/box/misc.result                               |   1 +
 test/wal_off/alter.result                          |   2 +-
 21 files changed, 1381 insertions(+), 8 deletions(-)
 create mode 100644 src/box/session_settings.c
 create mode 100644 src/box/session_settings.h
 create mode 100644 src/box/virtual_engine.c
 create mode 100644 src/box/virtual_engine.h
 create mode 100644 test/box/gh-4511-access-settings-from-any-frontend.result
 create mode 100644 test/box/gh-4511-access-settings-from-any-frontend.test.lua

-- 
2.7.4

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [Tarantool-patches] [PATCH v5 0/3] Introduce _session_setting system space
@ 2019-12-29 15:39 imeevma
  0 siblings, 0 replies; 15+ messages in thread
From: imeevma @ 2019-12-29 15:39 UTC (permalink / raw)
  To: korablev; +Cc: tarantool-patches

This patch-set creates _session_settings system space. This space
is used to view and change session settings.

https://github.com/tarantool/tarantool/issues/4511
https://github.com/tarantool/tarantool/tree/imeevma/gh-4511-new-engine

Mergen Imeev (3):
  box: introduce 'service' engine
  box: introduce _session_settings system space
  box: add SQL settings to _session_settings

 src/box/CMakeLists.txt                             |   2 +
 src/box/bootstrap.snap                             | Bin 5921 -> 5976 bytes
 src/box/box.cc                                     |   4 +
 src/box/errcode.h                                  |   3 +-
 src/box/lua/space.cc                               |   2 +
 src/box/lua/upgrade.lua                            |  15 +
 src/box/schema_def.h                               |   8 +
 src/box/service_engine.c                           | 135 ++++++
 src/box/service_engine.h                           |  53 +++
 src/box/session_settings.c                         | 472 +++++++++++++++++++++
 src/box/session_settings.h                         |  70 +++
 src/box/sql.c                                      |   5 +
 src/box/sql/build.c                                | 222 ++++++++++
 test/app-tap/tarantoolctl.test.lua                 |   4 +-
 test/box-py/bootstrap.result                       |   3 +
 test/box/access_sysview.result                     |   6 +-
 test/box/alter.result                              |   5 +-
 ...h-4511-access-settings-from-any-frontend.result | 273 ++++++++++++
 ...4511-access-settings-from-any-frontend.test.lua | 106 +++++
 test/box/misc.result                               |   1 +
 test/wal_off/alter.result                          |   2 +-
 21 files changed, 1382 insertions(+), 9 deletions(-)
 create mode 100644 src/box/service_engine.c
 create mode 100644 src/box/service_engine.h
 create mode 100644 src/box/session_settings.c
 create mode 100644 src/box/session_settings.h
 create mode 100644 test/box/gh-4511-access-settings-from-any-frontend.result
 create mode 100644 test/box/gh-4511-access-settings-from-any-frontend.test.lua

-- 
2.7.4

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2019-12-30 16:48 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-27 14:05 [Tarantool-patches] [PATCH v5 0/3] Introduce _session_setting system space imeevma
2019-12-27 14:05 ` [Tarantool-patches] [PATCH v5 1/3] box: introduce 'virtual' engine imeevma
2019-12-27 21:55   ` Nikita Pettik
2019-12-28 11:35     ` Alexander Turenko
2019-12-29 15:43     ` Mergen Imeev
2019-12-27 14:05 ` [Tarantool-patches] [PATCH v5 2/3] box: introduce _session_settings system space imeevma
2019-12-27 14:05 ` [Tarantool-patches] [PATCH v5 3/3] box: add SQL settings to _session_settings imeevma
2019-12-30 11:21   ` Nikita Pettik
2019-12-30 12:38     ` Mergen Imeev
2019-12-30 12:41       ` Mergen Imeev
2019-12-30 13:15         ` Nikita Pettik
2019-12-30 16:48           ` Mergen Imeev
2019-12-30 13:11       ` Nikita Pettik
2019-12-27 14:55 ` [Tarantool-patches] [PATCH v5 0/3] Introduce _session_setting system space Vladislav Shpilevoy
2019-12-29 15:39 imeevma

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox