[UsageCount] fixed typo in attribute name for datasource table

This commit is contained in:
Miriam Baglioni 2023-06-30 19:02:44 +02:00
parent ef2dd7a980
commit 8621377917
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);
});
}