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

Please Dimitry Sibiryakov re. hardcoded strings

This commit is contained in:
Dmitry Yemanov 2023-04-20 16:23:39 +03:00
parent 9527ad2406
commit 7a3f6d7ad8

View File

@ -5576,12 +5576,18 @@ static void show_pub_table(const SCHAR* table_name)
FOR PTAB IN RDB$PUBLICATION_TABLES CROSS
PUB IN RDB$PUBLICATIONS OVER RDB$PUBLICATION_NAME WITH
PTAB.RDB$TABLE_NAME EQ table_name
SORTED BY DESCENDING PUB.RDB$SYSTEM_FLAG, PTAB.RDB$PUBLICATION_NAME
SORTED BY DESCENDING PUB.RDB$SYSTEM_FLAG, PUB.RDB$PUBLICATION_NAME
const auto pub_name = fb_utils::exact_name(PUB.RDB$PUBLICATION_NAME);
if (first)
isqlGlob.printf("Publications: %s", fb_utils::exact_name(PTAB.RDB$PUBLICATION_NAME));
{
TEXT msg[MSG_LENGTH];
IUTILS_msg_get(MSG_PUBLICATIONS, msg);
isqlGlob.printf("%s %s", msg, pub_name);
}
else
isqlGlob.printf(", %s", fb_utils::exact_name(PTAB.RDB$PUBLICATION_NAME));
isqlGlob.printf(", %s", pub_name);
const bool active_flag = (!PUB.RDB$ACTIVE_FLAG.NULL && PUB.RDB$ACTIVE_FLAG > 0);
isqlGlob.printf(" (%s)", active_flag ? "Enabled" : "Disabled");