You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note the error doesn't occur for non-string columns, e.g. Longitude.
The code uses different SQL, i.e. DQXDbTools.py
if statm['Tpe'] == 'ISPRESENT':
processed = True
st = '{0} IS NOT NULL'.format(DBCOLESC(statm['ColName']))
self.querystring += st
self.querystring_params += st
if statm['Tpe'] == 'ISABSENT' or \
(statm['Tpe'] == '=' and statm['CompValue'] is None) or \
(statm['Tpe'] == '=' and statm['CompValue'] == ''):
processed = True
st = '{0} IS NULL'.format(DBCOLESC(statm['ColName']))
self.querystring += st
self.querystring_params += st
if statm['Tpe'] == 'ISEMPTYSTR':
processed = True
st = '{0}=\'\''.format(DBCOLESC(statm['ColName']))
self.querystring += st
self.querystring_params += st
if statm['Tpe'] == 'ISNOTEMPTYSTR':
processed = True
st = '{0}<>\'\''.format(DBCOLESC(statm['ColName']))
self.querystring += st
self.querystring_params += st
(btw, "Is present" seems to work OK for string columns.)
The text was updated successfully, but these errors were encountered:
Variants table
Add filter
Add criterion
Select "Chromosome" column
Select "Is absent" comparison
Apply
See error.
Note the error doesn't occur for non-string columns, e.g. Longitude.
The code uses different SQL, i.e. DQXDbTools.py
(btw, "Is present" seems to work OK for string columns.)
The text was updated successfully, but these errors were encountered: