Closed
Description
If a single JS file contains a publish()
statement of a view, and an operate()
statement (e.g. a CREATE TABLE FUNCTION
statement), the operate()
statement isn't executed on RUN.
To Reproduce
- Create a
.js
file that contains apublish()
statement and anoperate()
statement - Save and Click Run
Expected behavior
publish()
should create a table/view, andoperate()
query should be executed.
Notes
- Currently only the
publish()
statement is executed. - If I remove the
publish()
statement, theoperate()
statement works.