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
The current Groonga can't use computed value for output_columns, drilldown and sortby.
If Groonga supports dynamic columns, we can use computed value for them. Because users just put computed values to dynamic columns. Dynamic columns can be implemented by columns for temporary table (result table is a temporary table).
There is another feature provided by dynamic columns. Naming computed value in output_columns. For example, --output_columns 'snippet_html(column1), snippet_html(column2)' uses snippet_html for both computed values for now. If Groonga supports dynamic columns, we can use another label for each computed value.
The current Groonga can't use computed value for
output_columns,drilldownandsortby.If Groonga supports dynamic columns, we can use computed value for them. Because users just put computed values to dynamic columns. Dynamic columns can be implemented by columns for temporary table (result table is a temporary table).
There is another feature provided by dynamic columns. Naming computed value in
output_columns. For example,--output_columns 'snippet_html(column1), snippet_html(column2)'usessnippet_htmlfor both computed values for now. If Groonga supports dynamic columns, we can use another label for each computed value.API idea:
Available
stagevalues:initial: Created a column at the first. It can be used inquery,filter,drilldown,sortbyandoutput_columns.filtered: Created a column afterqueryandfilterare evaluated. It can be used indrilldown,sortbyandoutput_columns.output: Created a column aftersortby. The value of column should only evaluated only forlimitrecords.The text was updated successfully, but these errors were encountered: