Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

New ColumnTypes will be introduced to handle multiple values

Code Block
STRING_LIST
DOUBLE_LIST
INTEGER_LIST
BOOLEAN_LIST
DATE_LIST

...

Code Block
["value1", "value2", "value3"]
[1.2,3.4,5.6]
[6,7,8]
[true,false,true]

Value Limits

...

["value1","value2","value3"] would have a size of 28 characters


For a STRING_LIST column, maxSize restricts the size of single string values in that list, not the total size of the list.

For example, if maxSize=5, ["asdf", "qwerty] would not be allowed because "qwerty" has 6 characters.


Querying Multiple Values

To work with multiple value annotations:

...