Versions Compared

Key

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

...

SCHEMAS_GET = 5

Request
UUIDtable ID
arr or nilschema IDs, or null to get all


Response
map (int → array (array))Map from schema ID to columns. Column is represented by an array of values for: name, type, isKey. The array can contain extra data in future for additional properties.

...

Client side is supposed to match provided columns against the latest known schema. If all columns match, TUPLE_UPSERT_WITH_SCHEMA operation can be performed. Otherwise, when there are new columns, TUPLE_UPSERT is performeddon't match, request the latest schema and try again.

TUPLE_GET = 11

Request
UUIDtable ID
intschema ID
arrvalues for key columns (any in schema order)


Response
intschema id for the current tuple
arrtuple values in schema order

...