Indexed data on Solr contains some fields which are having empty values. When I run q=*:*
it does not include fields having empty values. What parameter do I need to pass while query to get fields having empty values in the result.
EDIT : I am indexing data using a csv file, entries in file are as follows :
id, dob, name
1,,name1
2,,name2
Now when I search for top 10 records I get only two fields. I want to get all fields even if there is no value stored for that.