Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Commit 10194f6

Browse files
fixFor3472 (#94)
1 parent 0365658 commit 10194f6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Stats.ImportAzureCdnStatistics/DataImporter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public async Task<DataTable> GetDataTableAsync(string tableName)
3636
{
3737
dataTable.Columns.Remove("Timestamp");
3838
}
39-
39+
dataTable.TableName = $"dbo.{tableName}";
4040
return dataTable;
4141
}
4242
}

src/Stats.ImportAzureCdnStatistics/LogFileProcessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public async Task ProcessLogFileAsync(ILeasedLogFile logFile, PackageStatisticsP
9090
var logFileAggregates = new LogFileAggregates(logFileName);
9191
foreach (var table in downloadFacts)
9292
{
93-
if (string.Equals(table.TableName, "Fact_Download", StringComparison.InvariantCultureIgnoreCase))
93+
if (string.Equals(table.TableName, "dbo.Fact_Download", StringComparison.InvariantCultureIgnoreCase))
9494
{
9595
// aggregate download counts by date
9696
var downloadsByDate =

0 commit comments

Comments
 (0)