Skip to content

InsertIntoTable

Description

      description: |
        Insert new records into table `id`.

Request Schema

    InsertIntoTableRequest:
      type: object
      description: |
        Request for inserting records into a table, excluding the Arrow IPC stream.
      properties:
        id:
          type: array
          items:
            type: string
        mode:
          type: string
          enum:
            - append
            - overwrite
          default: append

Response Schema

    InsertIntoTableResponse:
      type: object
      description: Response from inserting records into a table
      properties:
        version:
          type: integer
          format: int64
          description: The version of the table after the insert
          minimum: 0