listStreamingSQLTables
Syntax
listStreamingSQLTables()
Arguments
None.
Details
List all streaming SQL tables declared via declareStreamingSQLTable.
Return streaming SQL tables of all users in the system if called by the admin.
Return value: A table containing the following columns: tableName, shared, users.
Examples
t=table(1..10 as id,rand(100,10) as val)
share t as st
declareStreamingSQLTable(st)
listStreamingSQLTables()
| tableName | shared | users |
|---|---|---|
| st | true | admin |
Related functions: declareStreamingSQLTable
