8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 21:23:04 +01:00

Correct BLR printer for blr_marks

This commit is contained in:
hvlad 2020-06-02 14:17:45 +03:00
parent 9cf05fccde
commit 365abd814a
2 changed files with 3 additions and 2 deletions

View File

@ -247,6 +247,6 @@ static const struct
{"local_timestamp", byte_line},
{"local_time", byte_line},
{"at", verb_byte_verb},
{"marks", byte_literal},
{"marks", marks},
{0, 0}
};

View File

@ -345,7 +345,8 @@ static const UCHAR
window_win[] = { op_byte, op_window_win, 0},
relation_field[] = { op_line, op_indent, op_byte, op_literal,
op_line, op_indent, op_byte, op_literal, op_pad, op_line, 0},
store3[] = { op_line, op_byte, op_line, op_verb, op_verb, op_verb, 0};
store3[] = { op_line, op_byte, op_line, op_verb, op_verb, op_verb, 0},
marks[] = { op_byte, op_literal, op_line, op_verb, 0};
#include "../jrd/blp.h"