Skip to content

Commit 37104a2

Browse files
drewdzzza1div0
authored andcommitted
schema: add new system space _gc_consumers
Tarantool is being populated with new system space, so we need to add it to the list of all system spaces in `crud.schema`. Closes #443
1 parent 98b120e commit 37104a2

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
### Fixed
11+
12+
* `crud.schema` no longer returns system space `_gc_consumers` with Tarantool 3.2+.
13+
* Tests of `schema` with Tarantool 3.2+.
14+
815
## [1.5.2] - 20-05-24
916

1017
### Fixed

crud/schema.lua

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ schema.system_spaces = {
3636
['_ck_constraint'] = true,
3737
['_func_index'] = true,
3838
['_session_settings'] = true,
39+
['_gc_consumers'] = true,
3940
-- https://github.com/tarantool/vshard/blob/b3c27b32637863e9a03503e641bb7c8c69779a00/vshard/storage/init.lua#L752
4041
['_bucket'] = true,
4142
-- https://github.com/tarantool/ddl/blob/b55d0ff7409f32e4d527e2d25444d883bce4163b/test/set_sharding_metadata_test.lua#L92-L98

0 commit comments

Comments
 (0)