Hi,
I had the wild idea to use a Calculated Table to do aggregation, as in the attached model, where I have a script that uses the "Add row and data to global table" option to write data to a table, and then a query like the following to sum how often each value occurs in the first column:
SELECT [Col 1], COUNT(*) FROM GlobalTable1 GROUP BY [Col 1]
However, I cannot get the table to update. Not with Update Mode "Always", but even with an interval or when clicking the "Update" button in the interface it will count all rows as having value zero.
The only way to get the correct data is changing the query: for example adding a space character at the end of the SQL clause will recalculate the data correctly.
I found the bug in 19.0.3 and confirmed it's still present in 19.0.5.