Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix formatting
  • Loading branch information
minleejae committed Apr 30, 2025
commit 6b2b5e7fb22964386aacd38536c5d42a0c494b3f
Original file line number Diff line number Diff line change
Expand Up @@ -2212,12 +2212,12 @@ public void testAlterTableAddIndexInvisible() throws JSQLParserException {
assertNotNull(alterExp.getIndex());
assertEquals("k_idx", alterExp.getIndex().getName());
assertEquals("INDEX", alterExp.getIndex().getIndexKeyword());

List<String> columnNames = alterExp.getIndex().getColumnsNames();
assertNotNull(columnNames);
assertEquals(1, columnNames.size());
assertEquals("k", columnNames.get(0));

List<String> indexSpec = alterExp.getIndex().getIndexSpec();
assertNotNull(indexSpec);
assertTrue(indexSpec.contains("INVISIBLE"));
Expand Down
Loading