Skip to content

DropTableIndex

Description

      description: |
        Drop the specified index from table `id`.

Request Schema

    DropTableIndexRequest:
      type: object
      required:
        - id
        - index_name
      properties:
        id:
          type: array
          items:
            type: string
        index_name:
          type: string
          description: Name of the index to drop

Response Schema

    DropTableIndexResponse:
      type: object
      properties:
        version:
          type: integer
          format: int64
          minimum: 0
          description: Version of the table after dropping the index