[UsageCount] fixed typo in attribute name for datasource table

This commit is contained in:
Miriam Baglioni 2023-07-01 16:07:22 +02:00
parent f3a85e224b
commit 8dcd028eed
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);
});
}