Versions Compared

Key

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

...

Request
UUIDtable ID
intschema ID
arr or nilvalues for key columns (in schema order), or null when there is no record with the given key


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

...

Response
intschema ID (for all tuples in response)
arr of arrarray of rows with values in schema order. Any row can be null

TUPLE_GET_AND_UPSERT = 14

Request
UUIDtable ID
intschema ID
arrvalues for all columns in given schema (nil when value is missing for a column)


Response
intschema id for the current tuple
arr or niltuple values in schema order, or null when there were no matching record

TUPLE_INSERT = 15

Request
UUIDtable ID
intschema ID
arrvalues for all columns in given schema (nil when value is missing for a column)

Basic response.

TUPLE_INSERT_ALL = 16

Request
UUIDtable ID
intschema ID
arr of arrarray of rows with values for all columns in given schema (nil when value is missing for a column)

Basic response.

TUPLE_REPLACE = 17

Request
UUIDtable ID
intschema ID
arrvalues for all columns in given schema (nil when value is missing for a column)


Response
boolReplace result

TUPLE_REPLACE2 = 18

Request
UUIDtable ID
intschema ID
arroldRec: values for all columns in given schema (nil when value is missing for a column)
arrnewRec: values for all columns in given schema (nil when value is missing for a column)


Response
boolReplace result

TUPLE_GET_AND_REPLACE = 19

...