Skip to content

Commit

Permalink
Disable function call in output_columns for now
Browse files Browse the repository at this point in the history
I want to enable it again in the next release...

Note: To enable it again, the pull request should be merged:
  #35
  • Loading branch information
kou committed Oct 23, 2012
1 parent 5ec7be7 commit 9b8248c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/proc.c
Expand Up @@ -414,6 +414,10 @@ is_output_columns_format_v1(const char *output_columns,
{
unsigned int i;

/* TODO: We should enable function support in output_columns again.
We always treat all output_columns as old style for now. */
return GRN_TRUE;

/* TODO: We should support "_id, _key, *" as new output coumns format. */
for (i = 0; i < output_columns_len; i++) {
switch (output_columns[i]) {
Expand Down

0 comments on commit 9b8248c

Please sign in to comment.