Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
25eb2223
Commit
25eb2223
authored
8 years ago
by
Roman Tsisyk
Browse files
Options
Downloads
Patches
Plain Diff
vinyl: temporary disable compression in vinyl/large.test.lua
Caused by #1527
parent
d3dee1bc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/vinyl/stress.lua
+3
-3
3 additions, 3 deletions
test/vinyl/stress.lua
with
3 additions
and
3 deletions
test/vinyl/stress.lua
+
3
−
3
View file @
25eb2223
...
...
@@ -15,13 +15,13 @@ box.once("vinyl_stress", function()
s1
:
create_index
(
'pk'
,
{
if_not_exists
=
true
})
local
s2
=
box
.
schema
.
space
.
create
(
's2'
,
{
engine
=
'vinyl'
,
if_not_exists
=
true
})
s2
:
create_index
(
'pk'
,
{
compression
=
'zstd'
,
if_not_exists
=
true
})
s2
:
create_index
(
'pk'
,
{
if_not_exists
=
true
})
local
s3
=
box
.
schema
.
space
.
create
(
's3'
,
{
engine
=
'vinyl'
,
if_not_exists
=
true
})
s3
:
create_index
(
'pk'
,
{
compression
=
'zstd'
,
if_not_exists
=
true
})
s3
:
create_index
(
'pk'
,
{
if_not_exists
=
true
})
local
s4
=
box
.
schema
.
space
.
create
(
's4'
,
{
engine
=
'vinyl'
,
if_not_exists
=
true
})
s4
:
create_index
(
'pk'
,
{
compression
=
'lz4'
,
if_not_exists
=
true
})
s4
:
create_index
(
'pk'
,
{
if_not_exists
=
true
})
local
s5
=
box
.
schema
.
space
.
create
(
's5'
,
{
engine
=
'vinyl'
})
s5
:
create_index
(
'pk'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment