confluentinc / ksql

The database purpose-built for stream processing applications.
https://ksqldb.io
Other
128 stars 1.04k forks source link

Missing fields in doc for Table entity from SHOW TABLES #4190

Closed daniellavoie closed 4 years ago

daniellavoie commented 4 years ago

The /ksql endpoint reference documentation for the SHOW TABLES command does not refer the fields type and isWindowed.

https://docs.ksqldb.io/en/latest/developer-guide/ksqldb-rest-api/ksql-endpoint/


[
  {
    "@type":"tables",
    "statementText":"SHOW TABLES;",
    "tables":[
      {
        "type":"TABLE",
        "name":"KAFKA_JAVA_CLIENT_TRANSACTION_STATS",
        "topic":"KAFKA_JAVA_CLIENT_TRANSACTION_STATS",
        "format":"JSON",
        "isWindowed":true
      }
    ],
    "warnings":[]
  }
]
``` 
JimGalasyn commented 4 years ago

Fixed in https://github.com/confluentinc/ksql/pull/5294.