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
Some queries optimize the need for string concatenation too early, for example:
"SELECT 'ns:' || NSDATA.NS_NAME || ' ' || IDDATA.ID, count(IDDATA.ID) as TOTAL\n" (ns + Namespace + Name + id + count)
This leaves very few options to manipulate this afterwards, e.g. for handling versions where version is None. It shouldn't be done at the query layer here when we still want to format the results both as data and present them.
The text was updated successfully, but these errors were encountered:
Some queries optimize the need for string concatenation too early, for example:
"SELECT 'ns:' || NSDATA.NS_NAME || ' ' || IDDATA.ID, count(IDDATA.ID) as TOTAL\n"
(ns + Namespace + Name + id + count
)This leaves very few options to manipulate this afterwards, e.g. for handling versions where version is
None
. It shouldn't be done at the query layer here when we still want to format the results both as data and present them.The text was updated successfully, but these errors were encountered: