Skip to content

Commit 910d8e6

Browse files
fix getBlanksSql() (#7549)
#### Rationale fix getBlankSql() [issue #1033 ](LabKey/internal-issues#1033) #### Related Pull Requests - <!-- list of links to related pull requests (replace this comment) --> #### Changes - <!-- list of descriptions of changes that are worth noting (replace this comment) --> #### Tasks 📍 - [x] Needs Automation
1 parent be13ff5 commit 910d8e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/org/labkey/api/exp/property/AbstractDomainKind.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ protected boolean getBlanksSql(Domain domain, DomainProperty prop, SQLFragment b
206206
else
207207
{
208208
// Issue 29047
209-
blankRowsSQL.appendIdentifier(columnId).append(" IS NOT NULL");
209+
blankRowsSQL.appendIdentifier(columnId).append(" IS NULL");
210210
}
211211
if (prop.isMvEnabled())
212212
{

0 commit comments

Comments
 (0)