Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
442 changes: 49 additions & 393 deletions configuration/rawstatistics.d/20_jobs.json

Large diffs are not rendered by default.

485 changes: 199 additions & 286 deletions configuration/rawstatistics.d/60_cloud.json

Large diffs are not rendered by default.

402 changes: 66 additions & 336 deletions configuration/rawstatistics.d/80_gateways.json

Large diffs are not rendered by default.

440 changes: 440 additions & 0 deletions configuration/rawstatistics.d/ref/rawstatistics-common.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions etl/js/lib/etl_profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -875,6 +875,8 @@ ETLProfile.prototype.integrateWithXDMoD = function () {
var join = col.join;
var tableSchema = join.schema;
var tableName = join.table;
var primaryKey = join.primaryKey ? join.primaryKey : 'id';
var foreignTableAlias = join.foreignTableAlias ? join.foreignTableAlias : 'jf';
var foreignKey = join.foreignKey ? join.foreignKey : key;
alias = name;
columnName = join.column ? join.column : 'name';
Expand All @@ -890,10 +892,8 @@ ETLProfile.prototype.integrateWithXDMoD = function () {
name: tableName,
alias: tableAlias,
join: {
// All tables currently have primary key 'id'
// and are joined to the fact table 'jf'.
primaryKey: 'id',
foreignTableAlias: 'jf',
primaryKey: primaryKey,
foreignTableAlias: foreignTableAlias,
foreignKey: foreignKey
}
});
Expand Down
1,706 changes: 853 additions & 853 deletions tests/artifacts/xdmod/regression/current/expected/reference/raw-data/cloud.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public function testGetRealmsTokenAuth($role, $tokenType) {
$index++;
}

$counts = [31, 19, 16];
$counts = [35, 23, 16];
for ($i = 0; $i < count($counts); $i++) {
$this->assertCount(
$counts[$i],
Expand Down