Hi

I have two columns in my json which can have null, empty and non-empty
string as value.
I know how to filter records which have non-null value using following:

val req_logs = sqlContext.read.json(filePath)

val req_logs_with_dpid = req_log.filter("req_info.dpid is not null or
req_info.dpid_sha1 is not null")

But how to filter if value of column is empty string?
-- 
Regards
Prashant

Reply via email to