diff --git a/src/burp/restore.epp b/src/burp/restore.epp index a3cb0c264b7..75b4d532af4 100644 --- a/src/burp/restore.epp +++ b/src/burp/restore.epp @@ -10879,6 +10879,9 @@ rec_type ignore_data(BurpGlobals* tdgbl, burp_rel* relation) FB_UINT64 records = 0; rec_type record; + // msg 427 skipping data for table @1 + BURP_verbose(427, relation->rel_name.toQuotedString()); + try { while (true) diff --git a/src/include/firebird/impl/msg/gbak.h b/src/include/firebird/impl/msg/gbak.h index c4c226fa482..d678c187a57 100644 --- a/src/include/firebird/impl/msg/gbak.h +++ b/src/include/firebird/impl/msg/gbak.h @@ -104,7 +104,7 @@ FB_IMPL_MSG_NO_SYMBOL(GBAK, 102, "page size") FB_IMPL_MSG_NO_SYMBOL(GBAK, 103, "page size specified (@1 bytes) rounded up to @2 bytes") FB_IMPL_MSG_NO_SYMBOL(GBAK, 104, " @1Z print version number") FB_IMPL_MSG_NO_SYMBOL(GBAK, 105, "privilege") -FB_IMPL_MSG_NO_SYMBOL(GBAK, 106, " @1 records ignored") +FB_IMPL_MSG_NO_SYMBOL(GBAK, 106, " @1 records ignored") FB_IMPL_MSG_NO_SYMBOL(GBAK, 107, " @1 records restored") FB_IMPL_MSG_NO_SYMBOL(GBAK, 108, "@1 records written") FB_IMPL_MSG_NO_SYMBOL(GBAK, 109, " @1Y redirect/suppress status message output") @@ -422,3 +422,4 @@ FB_IMPL_MSG(GBAK, 423, gbak_writing_constants, -901, "00", "000", "writing const FB_IMPL_MSG(GBAK, 424, gbak_writing_constant, -901, "00", "000", "writing constant %s") FB_IMPL_MSG(GBAK, 425, gbak_constant, -901, "00", "000", "constant (in RDB$CONSTANTS)") FB_IMPL_MSG(GBAK, 426, gbak_restoring_constant, -901, "00", "000", "restoring constant %s") +FB_IMPL_MSG_NO_SYMBOL(GBAK, 427, "skipping data for table @1")