Skip to content

Commit

Permalink
Merge pull request #838 from eiffel777/prevent-null-usernames-being-a…
Browse files Browse the repository at this point in the history
…dded

Prevent null usernames being added when ingestion cloud data
  • Loading branch information
Greg Dean authored Mar 5, 2019
2 parents 99de12c + e04ac9a commit 95fb843
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"alias": "r",
"on": "r.id = raw.resource_id"
}
],
"where": [
"raw.provider_user IS NOT NULL"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"alias": "r",
"on": "r.id = raw.resource_id"
}
],
"where": [
"raw.user_name IS NOT NULL"
]
}
}

0 comments on commit 95fb843

Please sign in to comment.