Skip to content

Commit

Permalink
mysql: Fix SQL formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mariux committed Aug 18, 2015
1 parent 82acc8d commit 6c38efe
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions mysql/fix_stats_runwaitidle_sec.sql
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ CREATE TEMPORARY TABLE IF NOT EXISTS mytemp AS
stats_run_sec,
stats_idle_sec
FROM
mxq_job, mxq_group
mxq_job,
mxq_group
WHERE
mxq_job.group_id = mxq_group.group_id
)
Expand All @@ -117,7 +118,8 @@ CREATE TEMPORARY TABLE IF NOT EXISTS mytemp AS
stats_run_sec,
stats_idle_sec
FROM
mxq_job, mxq_group
mxq_job,
mxq_group
WHERE
mxq_job.group_id = mxq_group.group_id
AND date_start > 0
Expand All @@ -137,7 +139,8 @@ CREATE TEMPORARY TABLE IF NOT EXISTS mytemp AS
stats_run_sec,
stats_idle_sec
FROM
mxq_job, mxq_group
mxq_job,
mxq_group
WHERE
mxq_job.group_id = mxq_group.group_id
AND date_end > 0
Expand Down

0 comments on commit 6c38efe

Please sign in to comment.