Test code refactoring. Minor CI change.
All checks were successful
ci / build-test (push) Successful in 1m30s
ci / publish-image (push) Has been skipped

This commit is contained in:
2025-11-03 19:03:24 -05:00
parent 4204847c39
commit 2c7de7cdd9
18 changed files with 55 additions and 54 deletions

View File

@@ -54,6 +54,13 @@ public static class MariaDbClone
await ExecAsync(root, $"USE `{databaseName}`; {createTable};");
}
//await Parallel.ForEachAsync(tables, async (table, cancellationToken) =>
//{
// var createTable = await ShowCreateTableAsync(root, templateDbName, table);
// // Run DDL in the new DB (the CREATE statement itself doesn't include db name)
// await ExecAsync(root, $"USE `{databaseName}`; {createTable};");
//});
// 2) Copy data
foreach (var table in tables)
{