@@ -317,7 +317,7 @@ void activateIndex(BurpGlobals* tdgbl, const QualifiedMetaString& indexName)
317317
318318 if (fError)
319319 {
320- BURP_print(false , 173, indexName.toQuotedString().c_str());
320+ BURP_print(true , 173, indexName.toQuotedString().c_str());
321321 BURP_print_status(false, &local_status_vector);
322322 tdgbl->flag_on_line = false;
323323
@@ -378,25 +378,25 @@ int RESTORE_restore (const TEXT* file_name, const TEXT* database_name)
378378 MODIFY IDX USING
379379 IDX.RDB$INDEX_INACTIVE = TRUE;
380380 END_MODIFY;
381- BURP_print(false , 240, indexName.toQuotedString().c_str());
381+ BURP_print(true , 240, indexName.toQuotedString().c_str());
382382 // msg 240 Index \"%s\" failed to activate because:
383383
384384 if (error_code == isc_no_dup)
385385 {
386- BURP_print(false , 241);
386+ BURP_print(true , 241);
387387 // msg 241 The unique index has duplicate values or NULLs
388- BURP_print(false , 242);
388+ BURP_print(true , 242);
389389 // msg 242 Delete or Update duplicate values or NULLs, and activate index with
390390 }
391391 else
392392 {
393- BURP_print(false , 244);
393+ BURP_print(true , 244);
394394 // msg 244 Not enough disk space to create the sort file for an index
395- BURP_print(false , 245);
395+ BURP_print(true , 245);
396396 // msg 245 Set the TMP environment variable to a directory on a filesystem that does have enough space, and activate index with
397397 }
398398
399- BURP_print(false , 243, indexName.toQuotedString().c_str());
399+ BURP_print(true , 243, indexName.toQuotedString().c_str());
400400 // msg 243 ALTER INDEX \"%s\" ACTIVE;
401401 }
402402 END_FOR
@@ -765,7 +765,7 @@ void add_files(BurpGlobals* tdgbl, const char* file_name)
765765 COMMIT
766766 // existing ON_ERROR continues past error, beck
767767 ON_ERROR
768- BURP_print (false , 174);
768+ BURP_print (true , 174);
769769 // msg 174 cannot commit files
770770 BURP_print_status (false, &tdgbl->status_vector);
771771 ROLLBACK;
@@ -2116,7 +2116,7 @@ void get_array(BurpGlobals* tdgbl, burp_rel* relation, UCHAR* record_buffer)
21162116 elements_written * field->fld_length, (*buffer) + data_at);
21172117 if (status_vector->hasData())
21182118 {
2119- BURP_print (false , 81, field->fld_name);
2119+ BURP_print (true , 81, field->fld_name);
21202120 // msg 81 error accessing blob field %s -- continuing
21212121 BURP_print_status (true, &status_vector);
21222122#ifdef DEBUG
@@ -3143,9 +3143,9 @@ static void check_data_error(BurpGlobals* tdgbl, IStatus* status_vector, const b
31433143 {
31443144 if (tdgbl->gbl_sw_incremental)
31453145 {
3146- BURP_print(false , 138, relation->rel_name.toQuotedString().c_str());
3146+ BURP_print(true , 138, relation->rel_name.toQuotedString().c_str());
31473147 // msg 138 validation error on field in relation %s
3148- BURP_print_status (false, status_vector);
3148+ BURP_print_status(false, status_vector);
31493149 }
31503150 else
31513151 BURP_error_redirect(status_vector, 47);
@@ -3155,9 +3155,8 @@ static void check_data_error(BurpGlobals* tdgbl, IStatus* status_vector, const b
31553155 {
31563156 if (tdgbl->gbl_sw_incremental)
31573157 {
3158+ BURP_print(true, 114, relation->rel_name.toQuotedString().c_str());
31583159 // msg 114 restore failed for record in relation %s
3159- BURP_print(false, 114, relation->rel_name.toQuotedString().c_str());
3160-
31613160 BURP_print_status(false, status_vector, 342); // isc_gbak_invalid_data
31623161 }
31633162 else
@@ -3167,7 +3166,7 @@ static void check_data_error(BurpGlobals* tdgbl, IStatus* status_vector, const b
31673166 {
31683167 if (tdgbl->gbl_sw_incremental && isc_sqlcode(status_vector->getErrors()) != -902)
31693168 {
3170- BURP_print (false , 114, relation->rel_name.toQuotedString().c_str());
3169+ BURP_print(true , 114, relation->rel_name.toQuotedString().c_str());
31713170 // msg 114 restore failed for record in relation %s
31723171 BURP_print_status(false, status_vector);
31733172 }
@@ -3214,25 +3213,25 @@ static void commit_relation_data(BurpGlobals* tdgbl, burp_rel* relation)
32143213 {
32153214 IDX.RDB$INDEX_INACTIVE = TRUE;
32163215
3217- BURP_print(false , 240, indexName.toQuotedString().c_str());
3216+ BURP_print(true , 240, indexName.toQuotedString().c_str());
32183217 // msg 240 Index \"%s\" failed to activate because:
32193218
32203219 if (error_code == isc_no_dup)
32213220 {
3222- BURP_print(false , 241);
3221+ BURP_print(true , 241);
32233222 // msg 241 The unique index has duplicate values or NULLs
3224- BURP_print(false , 242);
3223+ BURP_print(true , 242);
32253224 // msg 242 Delete or Update duplicate values or NULLs, and activate index with
32263225 }
32273226 else
32283227 {
3229- BURP_print(false , 244);
3228+ BURP_print(true , 244);
32303229 // msg 244 Not enough disk space to create the sort file for an index
3231- BURP_print(false , 245);
3230+ BURP_print(true , 245);
32323231 // msg 245 Set the TMP environment variable to a directory on a filesystem that does have enough space, and activate index with
32333232 }
32343233
3235- BURP_print(false , 243, indexName.toQuotedString().c_str());
3234+ BURP_print(true , 243, indexName.toQuotedString().c_str());
32363235 // msg 243 ALTER INDEX \"%s\" ACTIVE
32373236 }
32383237 END_MODIFY
@@ -3246,7 +3245,7 @@ static void commit_relation_data(BurpGlobals* tdgbl, burp_rel* relation)
32463245 break;
32473246
32483247 default:
3249- BURP_print(false , 69, relation->rel_name.toQuotedString().c_str());
3248+ BURP_print(true , 69, relation->rel_name.toQuotedString().c_str());
32503249 // msg 69 commit failed on relation %s
32513250 BURP_print_status(false, &tdgbl->status_vector);
32523251 ROLLBACK;
0 commit comments