Skip to content

Commit

Permalink
Merge pull request #1075 from mkzia/fix_where
Browse files Browse the repository at this point in the history
Move where
  • Loading branch information
mkzia authored Sep 30, 2019
2 parents 2f3022a + a430f5b commit 09d58c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
"schema": "${SOURCE_SCHEMA}",
"alias": "rtc",
"type": "left outer",
"on": "rtcs.template_id=rtc.template_id",
"where": [
"rtc.template_id IS NULL"
]
"on": "rtcs.template_id=rtc.template_id"
}
],
"where": [
"rtc.template_id IS NULL"
]
}
}
8 changes: 4 additions & 4 deletions configuration/etl/etl_action_defs.d/xdb/report-templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
"schema": "${SOURCE_SCHEMA}",
"alias": "rt",
"type": "left outer",
"on": "rts.id=rt.id",
"where": [
"rt.id IS NULL"
]
"on": "rts.id=rt.id"
}
],
"where": [
"rt.id IS NULL"
]
}
}

0 comments on commit 09d58c5

Please sign in to comment.