This is an automated email from the ASF dual-hosted git repository. ptupitsyn pushed a commit to branch ignite-22133-bak in repository https://gitbox.apache.org/repos/asf/ignite-3.git
commit 5f7e9123b43de1158bc1762788cd3b6f70fa3f58 Author: Pavel Tupitsyn <[email protected]> AuthorDate: Fri Jun 27 14:46:09 2025 +0300 wip TestMigrateFromEmpty --- .../dotnet/Apache.Ignite.EntityFrameworkCore.Tests/BasicTest.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.Tests/BasicTest.cs b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.Tests/BasicTest.cs index 2bb8a4efc4e..320e3870942 100644 --- a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.Tests/BasicTest.cs +++ b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.Tests/BasicTest.cs @@ -33,7 +33,10 @@ public class BasicTest var tables = await client.Tables.GetTablesAsync(); var script = string.Join("\n", tables.Select(t => $"DROP TABLE {t.Name}; ")); - await client.Sql.ExecuteScriptAsync(script); + if (!string.IsNullOrWhiteSpace(script)) + { + await client.Sql.ExecuteScriptAsync(script); + } } [Test]
