Skip to content

Commit a11e932

Browse files
crud: require tuple-keydef and tuple-merger
This patch removes compatibility code that emulated `tuple-keydef` and `tuple-merger` support when they were missing. Now it is required to have this modules either internally r externally. Closes #365
1 parent abad36e commit a11e932

9 files changed

+50
-797
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1212
* Drop support of Tarantool 1.10.x older than 1.10.8 and
1313
Tarantool 2.x older than 2.5.2 (#365).
1414
* Unlock `tuple-keydef` and `tuple-merger` version dependencies (#365).
15+
* Require `tuple-keydef` and `tuple-merger` for work (#365).
1516

1617
## [1.4.0] - 16-10-23
1718

crud/common/stash.lua

-4
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,12 @@ local stash = {}
2020
-- @tfield string stats_metrics_registry
2121
-- Stash for metrics rocks statistics registry.
2222
--
23-
-- @tfield string select_module_compat_info
24-
-- Stash for select compatability version registry.
25-
--
2623
stash.name = {
2724
cfg = '__crud_cfg',
2825
stats_internal = '__crud_stats_internal',
2926
stats_local_registry = '__crud_stats_local_registry',
3027
stats_metrics_registry = '__crud_stats_metrics_registry',
3128
ddl_triggers = '__crud_ddl_spaces_triggers',
32-
select_module_compat_info = '__select_module_compat_info',
3329
storage_readview = '__crud_storage_readview',
3430
}
3531

crud/readview.lua

+2-12
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,20 @@ local stats = require('crud.stats')
1515

1616
local ReadviewError = errors.new_class('ReadviewError', {capture_stack = false})
1717

18-
local has_merger = (utils.tarantool_supports_external_merger() and
19-
package.search('tuple.merger')) or utils.tarantool_has_builtin_merger()
20-
2118
local OPEN_FUNC_NAME = 'readview_open_on_storage'
2219
local CRUD_OPEN_FUNC_NAME = utils.get_storage_call(OPEN_FUNC_NAME)
2320
local SELECT_FUNC_NAME = 'select_readview_on_storage'
2421
local CLOSE_FUNC_NAME = 'readview_close_on_storage'
2522
local CRUD_CLOSE_FUNC_NAME = utils.get_storage_call(CLOSE_FUNC_NAME)
2623

2724
if (not utils.tarantool_version_at_least(2, 11, 0))
28-
or (tarantool.package ~= 'Tarantool Enterprise') or (not has_merger) then
25+
or (tarantool.package ~= 'Tarantool Enterprise') then
2926
return {
3027
new = function() return nil,
3128
ReadviewError:new("Tarantool does not support readview") end,
3229
init = function() return nil end}
3330
end
34-
local select = require('crud.select.compat.select')
31+
local select = require('crud.select.module')
3532

3633
local readview = {}
3734

@@ -188,13 +185,6 @@ local function select_readview_on_storage(space_name, index_id, conditions, opts
188185

189186
local result = {cursor, filtered_tuples}
190187

191-
local select_module_compat_info = stash.get(stash.name.select_module_compat_info)
192-
if not select_module_compat_info.has_merger then
193-
if opts.fetch_latest_metadata then
194-
result[3] = cursor.storage_info.replica_schema_version
195-
end
196-
end
197-
198188
return unpack(result)
199189
end
200190

crud/select.lua

+1-21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
local errors = require('errors')
22

3-
local stash = require('crud.common.stash')
43
local utils = require('crud.common.utils')
54
local sharding = require('crud.common.sharding')
65
local select_executor = require('crud.select.executor')
@@ -10,20 +9,9 @@ local schema = require('crud.common.schema')
109

1110
local SelectError = errors.new_class('SelectError')
1211

13-
local select_module
14-
1512
local SELECT_FUNC_NAME = 'select_on_storage'
1613

17-
local select_module_compat_info = stash.get(stash.name.select_module_compat_info)
18-
local has_merger = (utils.tarantool_supports_external_merger() and
19-
package.search('tuple.merger')) or utils.tarantool_has_builtin_merger()
20-
if has_merger then
21-
select_module = require('crud.select.compat.select')
22-
select_module_compat_info.has_merger = true
23-
else
24-
select_module = require('crud.select.compat.select_old')
25-
select_module_compat_info.has_merger = false
26-
end
14+
local select_module = require('crud.select.module')
2715

2816
function checkers.vshard_call_mode(p)
2917
return p == 'write' or p == 'read'
@@ -114,14 +102,6 @@ local function select_on_storage(space_name, index_id, conditions, opts)
114102
local filtered_tuples = schema.filter_tuples_fields(resp.tuples, opts.field_names)
115103

116104
local result = {cursor, filtered_tuples}
117-
118-
local select_module_compat_info = stash.get(stash.name.select_module_compat_info)
119-
if not select_module_compat_info.has_merger then
120-
if opts.fetch_latest_metadata then
121-
result[3] = cursor.storage_info.replica_schema_version
122-
end
123-
end
124-
125105
return unpack(result)
126106
end
127107

crud/select/compat/common.lua

-30
This file was deleted.

0 commit comments

Comments
 (0)