Loading…
![]() String updated in the repository testing_project / Documentation: reference/reference_lua/table — Russian |
Things to check
Glossary
English | Russian | ||
---|---|---|---|
No related strings found in the glossary. |
Loading…
![]() String updated in the repository testing_project / Documentation: reference/reference_lua/table — Russian |
English | Russian | ||
---|---|---|---|
No related strings found in the glossary. |
local c = collation or 'binary'
local tmp_name = 'Temporary_for_tarantool_sort'
pcall(function() box.space[tmp_name]:drop() end)
box.schema.space.create(tmp_name, {temporary = true})
box.space[tmp_name]:create_index('I')
box.space[tmp_name]:create_index('I2',
{unique = false,
type='tree',
parts={{2, 'scalar',
collation = c,
is_nullable = true}}})
for i = 1, table.maxn(input_table) do
box.space[tmp_name]:insert{i, input_table[i]}
end
local t = box.space[tmp_name].index.I2:select()
for i = 1, table.maxn(input_table) do
input_table[i] = t[i][2]
end
box.space[tmp_name]:drop()
end
local c = collation or 'binary'
local tmp_name = 'Temporary_for_tarantool_sort'
pcall(function() box.space[tmp_name]:drop() end)
box.schema.space.create(tmp_name, {temporary = true})
box.space[tmp_name]:create_index('I')
box.space[tmp_name]:create_index('I2',
{unique = false,
type='tree',
parts={{2, 'scalar',
collation = c,
is_nullable = true}}})
for i = 1, table.maxn(input_table) do
box.space[tmp_name]:insert{i, input_table[i]}
end
local t = box.space[tmp_name].index.I2:select()
for i = 1, table.maxn(input_table) do
input_table[i] = t[i][2]
end
box.space[tmp_name]:drop()
end
Например, предположим, что таблица ``t = {1, 'A', -88.3, nil, true, 'b', 'B', nil, 'À'}``.
После ``tarantool_sort(t, 'unicode_ci')`` ``t`` содержит ``{nil, nil, true, -88.3, 1, 'A', 'À', 'b', 'B'}``.