Skip to content
Snippets Groups Projects
Commit c7aa5878 authored by Dmitry Simonenko's avatar Dmitry Simonenko
Browse files

Merge branch 'stable'

parents 1042c84d 67f3d3ca
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,7 @@ static void tc_print_fields(struct tnt_tuple *tu) {
while (tnt_next(&ifl)) {
if (TNT_IFIELD_IDX(&ifl) != 0)
tc_printf(", ");
tc_printf("'");
char *data = TNT_IFIELD_DATA(&ifl);
uint32_t size = TNT_IFIELD_SIZE(&ifl);
switch (size) {
......@@ -118,6 +119,7 @@ static void tc_print_fields(struct tnt_tuple *tu) {
data++;
}
}
tc_printf("'");
}
if (ifl.status == TNT_ITER_FAIL)
tc_printf("<parsing error>");
......
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