Skip to content

Commit

Permalink
Migration scripts from 3.6.0 and 3.7.0 should not particiate in build…
Browse files Browse the repository at this point in the history
…ing test database
  • Loading branch information
tomaszstrejczek committed Oct 11, 2024
1 parent 6f3f9d5 commit 3361198
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,7 @@ public virtual string StreamTestInsert
$"{this.ProviderMoniker}-Persistence.sql",
$"{this.ProviderMoniker}-Reminders.sql",
$"{this.ProviderMoniker}-Streaming.sql",
}.Concat(Directory.GetFiles(Environment.CurrentDirectory, $"{this.ProviderMoniker}-Clustering-*.sql")
.Concat(Directory.GetFiles(Environment.CurrentDirectory, $"{this.ProviderMoniker}-Persistence-*.sql"))
.Concat(Directory.GetFiles(Environment.CurrentDirectory, $"{this.ProviderMoniker}-Reminders-*.sql"))
.Concat(Directory.GetFiles(Environment.CurrentDirectory, $"{this.ProviderMoniker}-Streaming-*.sql"))
.Select(f => Path.GetFileName(f))
.OrderBy(f => f)).ToArray();
};

/// <summary>
/// A query template to create a database with a given name.
Expand Down

0 comments on commit 3361198

Please sign in to comment.