SOQL query results table doesn't include columns for fields with all null values

Issue #273 resolved
Scott Wells repo owner created an issue

If I run the query:

SELECT Name, AccountNumber
FROM Account
ORDER BY AccountNumber NULLS FIRST
LIMIT 2

I get the following:

Name                       AccountNumber
sForce
Pyramid Construction Inc.  CC213425

but if I change that query to:

SELECT Name, AccountNumber
FROM Account
ORDER BY AccountNumber NULLS FIRST
LIMIT 1

I get the following:

Name
sForce

A column should be shown for each queried field/relationship even if all values are null.

Comments (4)

  1. Scott Wells reporter

    Delivered in 2.0.5.2. I will also back-port this fix to IC1 before resolving the issue.

  2. Log in to comment