Navigation Menu

Skip to content

Commit

Permalink
Support vector of literal field
Browse files Browse the repository at this point in the history
  • Loading branch information
darashi committed Aug 14, 2012
1 parent 79136fa commit 3cb8bb1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/database/index-field.js
Expand Up @@ -122,6 +122,8 @@ IndexField.prototype = {
if (column.type == 'var') {
if (column.range == nroonga.ShortText)
return this._type = 'text';
if (column.range == this.indexTableName)
return this._type = 'literal';
} else if (column.type == 'fix') {
if (column.range == nroonga.UInt32)
return this._type = 'uint';
Expand Down

0 comments on commit 3cb8bb1

Please sign in to comment.