Skip to content

Commit

Permalink
[ADQL] Fix DB catalog name normalization
Browse files Browse the repository at this point in the history
Fix #150
  • Loading branch information
gmantele authored Jan 12, 2024
1 parent 71a0886 commit 23a989b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ADQLLib/src/adql/db/DefaultDBTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public final String getADQLCatalogName() {
}

public void setADQLCatalogName(final String name) {
adqlCatalogName = normalize(dbName);
adqlCatalogName = normalize(name);
}

/**
Expand Down

0 comments on commit 23a989b

Please sign in to comment.