Skip to content

Commit

Permalink
Receive a context.
Browse files Browse the repository at this point in the history
  • Loading branch information
daijiro committed Jun 18, 2013
1 parent 514a883 commit 7d05b38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/groonga.h
Expand Up @@ -2726,7 +2726,7 @@ GRN_API grn_table_sort_key *grn_table_sort_key_from_str(grn_ctx *ctx,
GRN_API grn_rc grn_table_sort_key_close(grn_ctx *ctx,
grn_table_sort_key *keys, unsigned int nkeys);

GRN_API grn_bool grn_table_is_grouped(grn_obj *table);
GRN_API grn_bool grn_table_is_grouped(grn_ctx *ctx, grn_obj *table);

GRN_API grn_obj *grn_table_create_for_group(grn_ctx *ctx,
const char *name,
Expand Down
2 changes: 1 addition & 1 deletion lib/db.c
Expand Up @@ -8871,7 +8871,7 @@ grn_table_sort_key_close(grn_ctx *ctx, grn_table_sort_key *keys, unsigned int nk
}

grn_bool
grn_table_is_grouped(grn_obj *table)
grn_table_is_grouped(grn_ctx *ctx, grn_obj *table)
{
if (GRN_OBJ_TABLEP(table) && GRN_TABLE_IS_GROUPED(table)) {
return GRN_TRUE;
Expand Down

0 comments on commit 7d05b38

Please sign in to comment.