Skip to content

Commit 1309935

Browse files
authored
Merge pull request #81 from github/caol-ila-mv-backfill-without-effective-datetime
Support MV backfills without effective datetime
2 parents 7173133 + 40b33c9 commit 1309935

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

KustoSchemaTools/Model/MaterializedView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class MaterializedView : IKustoBaseEntity
2424

2525
public List<DatabaseScriptContainer> CreateScripts(string name, bool isNew)
2626
{
27-
var asyncSetup = isNew && Backfill == true && !string.IsNullOrWhiteSpace(EffectiveDateTime);
27+
var asyncSetup = isNew && Backfill == true;
2828

2929

3030
var excludedProperies = new HashSet<string>(["Query", "Source", "Kind", "RetentionAndCachePolicy", "RowLevelSecurity"]);

0 commit comments

Comments
 (0)