Hide and show attributes of cfdump

In accordance with docs, this should be a bug.

<cfscript>
q = QueryNew("a,b,c,d", "varchar,varchar,varchar,varchar", ["aa","bb","cc","dd"]);
dump( var="#q#",hide="a" ); //should show only [b,c,d] fields
dump( var="#q#",show="a" ); //should show only [a] field
</cfscript>

Live here:

OS: Win10
Lucee Version: 5.3.5.92

There is no code in Lucee QueryUtil.java to do that. Add a bug ticket.

It did work for a struct

1 Like

Other data types have different code files. I already have it coded. Need to clean up.

@Roberto_Marzialetti, I filed a bug for this issue.
https://luceeserver.atlassian.net/browse/LDEV-2865

1 Like

Thanks!