Skip to content

Commit

Permalink
Cannot view table with special characters #324
Browse files Browse the repository at this point in the history
  • Loading branch information
aeberhart committed May 16, 2024
1 parent f6bb8af commit 1daa885
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashjoin-core/src/main/java/org/dashjoin/service/Manage.java
Original file line number Diff line number Diff line change
Expand Up @@ -843,11 +843,11 @@ else if (m == null)
}

String cleanColumnName(Object cell) {
return cell.toString().replace('-', '_');
return cell.toString(); // .replace('-', '_');
}

String cleanTableName(String res) {
return res.replace(' ', '_');
return res; // .replace(' ', '_');
}

String getFileExt(MultivaluedMap<String, String> header) {
Expand Down

0 comments on commit 1daa885

Please sign in to comment.