[UsageCount] fixed typo in attribute name for datasource table

This commit is contained in:
Miriam Baglioni 2023-06-30 18:56:41 +02:00
parent 9963fd6d29
commit 7738372125
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ public class SparkAtomicActionUsageJob implements Serializable {
removeOutputDir(spark, outputPath);
prepareData(dbname, spark, workingPath + "/usageDb", "usage_stats", "result_id");
prepareData(dbname, spark, workingPath + "/projectDb", "project_stats", "id");
prepareData(dbname, spark, workingPath + "/datasourceDb", "datasource_stats", "repositor_id");
prepareData(dbname, spark, workingPath + "/datasourceDb", "datasource_stats", "repository_id");
writeActionSet(spark, workingPath, outputPath);
});
}