Marco Mazzon
Results
1
issues of
Marco Mazzon
I'm trying to read from ksql in python with this script: ``` from ksql import KSQLAPI client = KSQLAPI('http://0.0.0.0:8088',) columns = ['id INT','name VARCHAR'] client.create_stream(table_name='students', columns_type= columns, topic='students') query =...
bug