Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

組織コードbaroqueで絞り込む #60

Open
wants to merge 1 commit into
base: beta/feature/1.0.0
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions glue-job/baroque/production/e/apiserver/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def apply(inputFrame, glueContext):
dt = '{yesterday}'
and request_id is not null
and request_id != ''
and org_code = 'baroque'
and api = 'application'
and (message = 'touch' or message = 'coupon_draw' or message = 'screen_imp');
"""
Expand Down
1 change: 1 addition & 0 deletions glue-job/baroque/production/e/evserver/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def apply(inputFrame, glueContext):
from application_table
where
dt = '{yesterday}'
and org_code = 'baroque'
and request_id is not null
and request_id != '';
"""
Expand Down
1 change: 1 addition & 0 deletions glue-job/baroque/staging/beta/apiserver/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def apply(inputFrame, glueContext):
dt = '{yesterday}'
and request_id is not null
and request_id != ''
and org_code = 'baroque'
and api = 'application'
and (message = 'touch' or message = 'coupon_draw' or message = 'screen_imp');
"""
Expand Down
1 change: 1 addition & 0 deletions glue-job/baroque/staging/beta/evserver/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def apply(inputFrame, glueContext):
from application_table
where
dt = '{yesterday}'
and org_code = 'baroque'
and request_id is not null
and request_id != '';
"""
Expand Down
1 change: 1 addition & 0 deletions glue-job/baroque/staging/e/apiserver/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def apply(inputFrame, glueContext):
where
dt = '{yesterday}'
and request_id is not null
and org_code = 'baroque'
and request_id != ''
and api = 'application'
and (message = 'touch' or message = 'coupon_draw' or message = 'screen_imp');
Expand Down
1 change: 1 addition & 0 deletions glue-job/baroque/staging/e/evserver/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def apply(inputFrame, glueContext):
from application_table
where
dt = '{yesterday}'
and org_code = 'baroque'
and request_id is not null
and request_id != '';
"""
Expand Down
Loading