Skip to content
Snippets Groups Projects
Commit 0a5213d9 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Merge branch 'tc-tarantool-newf' into stable

parents eb3e64cb eed92110
No related branches found
No related tags found
No related merge requests found
......@@ -34,9 +34,7 @@ static void
tc_printer_snap_tarantool( struct tnt_log_row_snap_v11 *row,
struct tnt_tuple *tu)
{
tc_printf("tag: %"PRIu16", cookie: %"PRIu64", space: %"PRIu32"\n",
row->tag,
row->cookie,
tc_printf("space: %"PRIu32" ",
row->space);
tc_print_tuple(tu);
......
......@@ -63,11 +63,14 @@ static void
tc_printer_xlog_tarantool(struct tnt_log_header_v11 *hdr,
struct tnt_request *r)
{
tc_printf("%s lsn: %"PRIu64", time: %f, len: %"PRIu32"\n",
tc_printf("%s, lsn: %"PRIu64", time: %lf, len: %"PRIu32", space: "
"%"PRIu32" ",
tc_query_type(r->h.type),
hdr->lsn,
hdr->tm,
hdr->len);
hdr->len,
r->r.insert.h.ns
);
switch (r->h.type) {
case TNT_OP_INSERT:
tc_print_tuple(&r->r.insert.t);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment