[Groonga-commit] groonga/groonga at 5f07770 [master] Support expanding sub table columns by "*"

Back to archive index

Kouhei Sutou null+****@clear*****
Fri May 6 01:02:10 JST 2016


Kouhei Sutou	2016-05-06 01:02:10 +0900 (Fri, 06 May 2016)

  New Revision: 5f0777034dea3e9b2d32f7f3dbf06cd4e15659bd
  https://github.com/groonga/groonga/commit/5f0777034dea3e9b2d32f7f3dbf06cd4e15659bd

  Message:
    Support expanding sub table columns by "*"

  Modified files:
    lib/db.c

  Modified: lib/db.c (+13 -8)
===================================================================
--- lib/db.c    2016-05-06 00:42:44 +0900 (500f7d3)
+++ lib/db.c    2016-05-06 01:02:10 +0900 (d0ce0d5)
@@ -12516,19 +12516,24 @@ grn_obj_columns(grn_ctx *ctx, grn_obj *table,
                                            GRN_COLUMN_NAME_ID_LEN);
               if (ai) {
                 if (ai->header.type == GRN_ACCESSOR) {
-                  cols = grn_hash_create(ctx, NULL, sizeof(grn_id), 0,
-                                         GRN_OBJ_TABLE_HASH_KEY|GRN_HASH_TINY);
-                  if (cols) {
-                    grn_id *key;
-                    grn_accessor *a, *ac;
-                    grn_obj *target_table = table;
-                    for (a = (grn_accessor *)ai; a; a = a->next) {
-                      target_table = a->obj;
+                  grn_id *key;
+                  grn_accessor *id_accessor;
+                  for (id_accessor = ((grn_accessor *)ai)->next;
+                       id_accessor;
+                       id_accessor = id_accessor->next) {
+                    grn_obj *target_table = id_accessor->obj;
+
+                    cols = grn_hash_create(ctx, NULL, sizeof(grn_id), 0,
+                                           GRN_OBJ_TABLE_HASH_KEY|GRN_HASH_TINY);
+                    if (!cols) {
+                      continue;
                     }
                     grn_table_columns(ctx, target_table,
                                       p, r - p - 1, (grn_obj *)cols);
                     GRN_HASH_EACH(ctx, cols, id, &key, NULL, NULL, {
                       if ((col = grn_ctx_at(ctx, *key))) {
+                        grn_accessor *a;
+                        grn_accessor *ac;
                         ac = accessor_new(ctx);
                         GRN_PTR_PUT(ctx, res, (grn_obj *)ac);
                         for (a = (grn_accessor *)ai; a; a = a->next) {
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index