Skip to content

Commit

Permalink
Improved performance of the Data Browser
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/jailer/code/trunk@1108 3dd849cd-670e-4645-a7cd-dd197c8d0e81
  • Loading branch information
rwisser committed Oct 31, 2016
1 parent 21df326 commit 466bc67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/net/sf/jailer/ui/AdditionalSubjectsDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ protected void updateFromDetailsView(AdditionalSubject element,

@Override
protected Object[] toColumnList(AdditionalSubject element, int index) {
return new String[] { getDisplayName(element), "Where " + element.getCondition() };
return new String[] { getDisplayName(element), element.getCondition().length() > 0? ("Where " + element.getCondition()) : "all rows" };
}

@Override
Expand Down

0 comments on commit 466bc67

Please # to comment.