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
d3f1dc11
Commit
d3f1dc11
authored
11 years ago
by
ocelot-inc
Browse files
Options
Downloads
Plain Diff
Merge branch 'stable' of
https://github.com/tarantool/tarantool
into stable
parents
e5f4fcc4
ea535502
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
client/tarantool/tc_print_xlog.c
+2
-0
2 additions, 0 deletions
client/tarantool/tc_print_xlog.c
client/tarantool/tc_query.c
+1
-0
1 addition, 0 deletions
client/tarantool/tc_query.c
with
3 additions
and
0 deletions
client/tarantool/tc_print_xlog.c
+
2
−
0
View file @
d3f1dc11
...
...
@@ -81,6 +81,7 @@ tc_printer_xlog_tarantool(struct tnt_log_row *row,
tc_print_tuple
(
&
r
->
r
.
insert
.
t
);
break
;
case
TNT_OP_DELETE
:
case
TNT_OP_DELETE_1_3
:
tc_print_tuple
(
&
r
->
r
.
del
.
t
);
break
;
case
TNT_OP_UPDATE
:
...
...
@@ -104,6 +105,7 @@ tc_printer_xlog_lua(struct tnt_log_row *row,
tc_print_lua_fields
(
&
r
->
r
.
insert
.
t
);
break
;
case
TNT_OP_DELETE
:
case
TNT_OP_DELETE_1_3
:
tc_printf
(
"delete("
);
tc_printf
(
"%"
PRIu32
", "
,
r
->
r
.
del
.
h
.
ns
);
tc_print_lua_tuple
(
&
r
->
r
.
del
.
t
);
...
...
This diff is collapsed.
Click to expand it.
client/tarantool/tc_query.c
+
1
−
0
View file @
d3f1dc11
...
...
@@ -53,6 +53,7 @@ char *tc_query_type(uint32_t type) {
case
TNT_OP_PING
:
return
"Ping"
;
case
TNT_OP_INSERT
:
return
"Insert"
;
case
TNT_OP_DELETE
:
return
"Delete"
;
case
TNT_OP_DELETE_1_3
:
return
"Delete_1_3"
;
case
TNT_OP_UPDATE
:
return
"Update"
;
case
TNT_OP_SELECT
:
return
"Select"
;
case
TNT_OP_CALL
:
return
"Call"
;
...
...
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