From 15df7ad33fc862c7b7fe6453b107d4ecaec86f2c Mon Sep 17 00:00:00 2001 From: dimitr Date: Mon, 31 Jul 2006 08:00:40 +0000 Subject: [PATCH] Updated the BLR printer to handle all FB2 features. --- src/jrd/blp.h | 4 ++-- src/jrd/gds.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jrd/blp.h b/src/jrd/blp.h index 17418385a5..81183780a1 100644 --- a/src/jrd/blp.h +++ b/src/jrd/blp.h @@ -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}, diff --git a/src/jrd/gds.cpp b/src/jrd/gds.cpp index 56aae8123f..25a2887bca 100644 --- a/src/jrd/gds.cpp +++ b/src/jrd/gds.cpp @@ -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};