You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 a publish() statement and an operate() statement
Save and Click Run
Expected behavior
publish() should create a table/view, and operate() query should be executed.
Notes
Currently only the publish() statement is executed.
If I remove the publish() statement, the operate() statement works.
The text was updated successfully, but these errors were encountered:
If a single JS file contains a
publish()
statement of a view, and anoperate()
statement (e.g. aCREATE TABLE FUNCTION
statement), theoperate()
statement isn't executed on RUN.To Reproduce
.js
file that contains apublish()
statement and anoperate()
statementExpected behavior
publish()
should create a table/view, andoperate()
query should be executed.Notes
publish()
statement is executed.publish()
statement, theoperate()
statement works.The text was updated successfully, but these errors were encountered: