8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 02:03:03 +01:00

Updated the BLR printer to handle all FB2 features.

This commit is contained in:
dimitr 2006-07-31 08:00:40 +00:00
parent 38c31a4fea
commit 15df7ad33f
2 changed files with 3 additions and 3 deletions

View File

@ -193,9 +193,9 @@ static const struct
{"user_savepoint", user_savepoint},
{"dcl_cursor", dcl_cursor},
{"cursor_stmt", cursor_stmt},
{"current_timestamp2", byte},
{"current_time2", byte},
// These verbs were added in 6.0, primarily to support 64-bit integers, now obsolete
{"agg_total_distinct2", one},
{"agg_average2", one},
{"agg_average_distinct2", one}, // 170
{"average2", two},
{"gen_id2", gen_id},

View File

@ -386,7 +386,7 @@ static const UCHAR
extract[] = { op_line, op_byte, op_verb, 0},
user_savepoint[] = { op_byte, op_byte, op_literal, op_line, 0},
exec_into[] = { op_word, op_line, op_indent, op_exec_into, 0},
dcl_cursor[] = { op_word, op_line, op_verb, 0},
dcl_cursor[] = { op_word, op_line, op_verb, op_indent, op_word, op_line, op_args, 0},
cursor_stmt[] = { op_cursor_stmt, 0 },
strlength[] = { op_byte, op_line, op_verb, 0},
trim[] = { op_byte, op_byte, op_line, op_verb, 0};