[Groonga-commit] groonga/groonga-admin at 2fae72b [master] Fix mismatched term for fixed type columns

Back to archive index

YUKI Hiroshi null+****@clear*****
Fri Sep 23 12:30:36 JST 2016


YUKI Hiroshi	2016-09-23 12:30:36 +0900 (Fri, 23 Sep 2016)

  New Revision: 2fae72be43379202e4335b13c62ae68b9a6efb7f
  https://github.com/groonga/groonga-admin/commit/2fae72be43379202e4335b13c62ae68b9a6efb7f

  Merged 2dd9aa7: Merge pull request #11 from groonga/features/migrate-column_list-to-schema

  Message:
    Fix mismatched term for fixed type columns

  Modified files:
    app/scripts/services/schema-loader.js

  Modified: app/scripts/services/schema-loader.js (+2 -2)
===================================================================
--- app/scripts/services/schema-loader.js    2016-09-23 12:28:35 +0900 (64e459d)
+++ app/scripts/services/schema-loader.js    2016-09-23 12:30:36 +0900 (3b88ef5)
@@ -212,7 +212,7 @@ angular.module('groongaAdminApp')
           name:   '_id',
           id:     rawTable.id || 0,
           path:   rawTable.path || '',
-          type:   'fix',
+          type:   'scalar',
           flags:  ['COLUMN_SCALAR', 'PERSISTENT'],
           domain: rawTable.name,
           range:  'UInt32',
@@ -224,7 +224,7 @@ angular.module('groongaAdminApp')
             name:    '_key',
             id:      rawTable.id || 0,
             path:    '',
-            type:    'fix',
+            type:    'scalar',
             flags:   ['COLUMN_SCALAR'],
             domain:  rawTable.name,
             range:   rawTable.key_type.name,
-------------- next part --------------
HTML����������������������������...
Download 



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