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
scripts.Add(newDatabaseScriptContainer("CreateOrAlterMaterializedView",40,$".create-or-alter materialized-view with ({properties}) {name} on {Kind}{Source} {{ {Query} }}"));
43
+
44
+
if(asyncSetup)
45
+
{
46
+
scripts.Add(newDatabaseScriptContainer("CreateMaterializedView",Kind=="table"?40:41,$".create async ifnotexists materialized-view with ({properties}) {name} on {Kind}{Source} {{ {Query} }}",true));
47
+
}
48
+
else
49
+
{
50
+
scripts.Add(newDatabaseScriptContainer("CreateMaterializedView",Kind=="table"?40:41,$".create-or-alter materialized-view with ({properties}) {name} on {Kind}{Source} {{ {Query} }}"));
0 commit comments