Skip to content

Commit eb5b1b7

Browse files
DifferentialOrangevakhov
authored andcommitted
schema: filter tt migrations system space
Refer to tarantool/tt-ee#181 (cherry picked from commit c889dc363e19deb5499433ef1e912dcf9f5076ed)
1 parent 45b5835 commit eb5b1b7

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010
### Fixed
1111

1212
* `crud.schema` no longer returns system space `_gc_consumers` with Tarantool 3.2+.
13+
* `crud.schema` no longer returns `tt` system space `_tt_migrations`.
1314
* Tests of `schema` with Tarantool 3.2+.
1415
* Fixed bad error handling for method `call.single`
1516

crud/schema.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ schema.system_spaces = {
4242
-- https://github.com/tarantool/ddl/blob/b55d0ff7409f32e4d527e2d25444d883bce4163b/test/set_sharding_metadata_test.lua#L92-L98
4343
['_ddl_sharding_key'] = true,
4444
['_ddl_sharding_func'] = true,
45+
-- https://github.com/tarantool/tt-ee/blob/6045cd6f4f9b10fbba7e2c6abeecb8f856fee9b0/lib/migrations/internal/eval/body/lua/status_api.lua
46+
['_tt_migrations'] = true,
4547
}
4648

4749
local function get_crud_schema(space)

0 commit comments

Comments
 (0)