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
caf9484d
Commit
caf9484d
authored
9 years ago
by
ocelot-inc
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://github.com/tarantool/tarantool
parents
223d6812
c17fa868
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+18
-0
18 additions, 0 deletions
.gitignore
test/box-py/iproto.result
+18
-0
18 additions, 0 deletions
test/box-py/iproto.result
test/box-py/iproto.test.py
+16
-0
16 additions, 0 deletions
test/box-py/iproto.test.py
third_party/sophia
+1
-1
1 addition, 1 deletion
third_party/sophia
with
53 additions
and
1 deletion
.gitignore
+
18
−
0
View file @
caf9484d
...
...
@@ -75,3 +75,21 @@ doc/www/content/doc
extra/dist/default/tarantool
extra/com.tarantool.tarantool.plist
extra/postflight
build-area/*
debian/files
debian/stamp-makefile-build
debian/stamp-makefile-install
debian/tarantool-common.debhelper.log
debian/tarantool-common.postinst.debhelper
debian/tarantool-common.postrm.debhelper
debian/tarantool-common.prerm.debhelper
debian/tarantool-common.substvars
debian/tarantool-common/*
debian/tarantool-dev.debhelper.log
debian/tarantool-dev.substvars
debian/tarantool-dev/*
debian/tarantool.debhelper.log
debian/tarantool.substvars
debian/tarantool/*
debian/tmp/*
This diff is collapsed.
Click to expand it.
test/box-py/iproto.result
+
18
−
0
View file @
caf9484d
...
...
@@ -143,6 +143,24 @@ space:drop()
space2:drop()
---
...
space = box.schema.create_space('gh1280', { engine = 'sophia' })
---
...
index = space:create_index('primary')
---
...
space:insert({1})
---
...
space:insert({2, 'Music'})
---
...
space:insert({3, 'Length', 93})
---
...
space:drop()
---
...
box.schema.user.revoke('guest', 'read,write,execute', 'universe')
---
...
This diff is collapsed.
Click to expand it.
test/box-py/iproto.test.py
+
16
−
0
View file @
caf9484d
...
...
@@ -281,4 +281,20 @@ c.close()
admin
(
"
space:drop()
"
)
admin
(
"
space2:drop()
"
)
#
# gh-1280 Segmentation fault on space.select(tuple()) or space.select([2])
#
admin
(
"
space = box.schema.create_space(
'
gh1280
'
, { engine =
'
sophia
'
})
"
)
admin
(
"
index = space:create_index(
'
primary
'
)
"
)
admin
(
"
space:insert({1})
"
)
admin
(
"
space:insert({2,
'
Music
'
})
"
)
admin
(
"
space:insert({3,
'
Length
'
, 93})
"
)
iproto
.
py_con
.
space
(
'
gh1280
'
).
select
([])
iproto
.
py_con
.
space
(
'
gh1280
'
).
select
(
list
())
admin
(
"
space:drop()
"
)
admin
(
"
box.schema.user.revoke(
'
guest
'
,
'
read,write,execute
'
,
'
universe
'
)
"
)
This diff is collapsed.
Click to expand it.
sophia
@
732a861a
Compare
a7c6db77
...
732a861a
Subproject commit
a7c6db77fa558b44f33226164400e090a6e05c16
Subproject commit
732a861a11f56e335e21e482dd39ff22a7a4362b
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