Skip to content

Commit

Permalink
fix: bug wsimport wait step
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Jan 25, 2024
1 parent b957454 commit 6721c7b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,8 @@ public boolean isWebServiceNotPending() throws ArcException {

ArcPreparedStatementBuilder requete = new ArcPreparedStatementBuilder();

requete.append("SELECT 1 FROM pg_tables WHERE schemaname||'.'||tablename = " + requete.quoteText(tableWsPending)
requete.append("SELECT 1 FROM pg_tables WHERE schemaname||'.'||tablename = " + requete.quoteText(
ViewEnum.normalizeTableName(tableWsPending))
+ " ");

return !UtilitaireDao.get(0).hasResults(connection, requete);
Expand Down

0 comments on commit 6721c7b

Please sign in to comment.