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
When using select query string param to reorder and/or omit columns and outpout format text/csv the csv column names header will still be as without select (but data is selected as expected).
The text was updated successfully, but these errors were encountered:
1) Feature.Query.RpcSpec, remote procedure call, a proc that returns a set, returns CSV with custom select
body mismatch:
expected: "name,id,client_id\n\"Windows 10\",2,1"
but got: "client_id,id,name\n\"Windows 10\",2,1"
To get the wrong output you need:
call an RPC
select columns in non-alphabetic order
The values will be returned in the correct order, but the headers will always be sorted alphabetically.
When using select query string param to reorder and/or omit columns and outpout format text/csv the csv column names header will still be as without select (but data is selected as expected).
The text was updated successfully, but these errors were encountered: