Skip to content

Commit cb288e6

Browse files
committed
Fixed regression in SHOW INDEX
1 parent 9175ac0 commit cb288e6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/isql/show.epp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4733,11 +4733,12 @@ static void show_index(const QualifiedMetaString& relationName,
47334733
**************************************/
47344734

47354735
isqlGlob.printf(
4736-
"%s%s%s INDEX ON %s",
4736+
"%s%s%s%s INDEX ON %s",
47374737
IUTILS_name_to_string(indexName).c_str(),
47384738
(unique_flag & IDX_UNIQUE ? " UNIQUE" : ""),
47394739
(unique_flag & IDX_NOT_VALIDATED ? " NOT VALIDATED" : ""),
4740-
(index_type == 1 ? " DESCENDING" : ""), IUTILS_name_to_string(relationName).c_str());
4740+
(index_type == 1 ? " DESCENDING" : ""),
4741+
IUTILS_name_to_string(relationName).c_str());
47414742

47424743
// Get column names
47434744

0 commit comments

Comments
 (0)