[Groonga-commit] groonga/groonga at 1ef28f7 [master] select: use columns[LABEL](N) for query log format

Back to archive index

Kouhei Sutou null+****@clear*****
Wed Mar 1 17:27:05 JST 2017


Kouhei Sutou	2017-03-01 17:27:05 +0900 (Wed, 01 Mar 2017)

  New Revision: 1ef28f75334e04839b4ce95e50938b8b2f5cc9d2
  https://github.com/groonga/groonga/commit/1ef28f75334e04839b4ce95e50938b8b2f5cc9d2

  Message:
    select: use columns[LABEL](N) for query log format

  Modified files:
    lib/proc/proc_select.c

  Modified: lib/proc/proc_select.c (+3 -3)
===================================================================
--- lib/proc/proc_select.c    2017-03-10 14:57:01 +0900 (28d4544)
+++ lib/proc/proc_select.c    2017-03-01 17:27:05 +0900 (fefd65b)
@@ -1391,10 +1391,10 @@ grn_select_apply_columns(grn_ctx *ctx,
     grn_obj_close(ctx, expression);
 
     GRN_QUERY_LOG(ctx, GRN_QUERY_LOG_SIZE,
-                  ":", "columns(%d)[%.*s]",
-                  grn_table_size(ctx, table),
+                  ":", "columns[%.*s](%d)",
                   (int)(column_data->label.length),
-                  column_data->label.value);
+                  column_data->label.value,
+                  grn_table_size(ctx, table));
   }
 
   grn_hash_cursor_close(ctx, columns_cursor);
-------------- next part --------------
HTML����������������������������...
下载 



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