diff options
| author | kvahuja <k.v.ahuja@gmail.com> | 2017-02-17 21:08:14 +0530 |
|---|---|---|
| committer | kvahuja <k.v.ahuja@gmail.com> | 2017-02-17 21:08:14 +0530 |
| commit | b7e442270e0427c8ebf0d246edd91c26d1ad37a1 (patch) | |
| tree | 3acaedb2cea01fbb4467ede78d378959644999a4 /queries/match.sql | |
| parent | 6dfc71bf6b4d617ffc10f60cdc06b376e26b1c34 (diff) | |
| download | processor-b7e442270e0427c8ebf0d246edd91c26d1ad37a1.tar.gz processor-b7e442270e0427c8ebf0d246edd91c26d1ad37a1.zip | |
match and roster tables refactored
Diffstat (limited to 'queries/match.sql')
| -rw-r--r-- | queries/match.sql | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/queries/match.sql b/queries/match.sql index 0ff0c62..8ee527a 100644 --- a/queries/match.sql +++ b/queries/match.sql @@ -1,18 +1,12 @@ SELECT -id AS "match_id", +id AS "apiId", +(attributes->>'createdAt')::timestamp as "createdAt", (attributes->>'duration')::int AS "duration", attributes->>'gameMode' AS "gameMode", -COALESCE(NULLIF(attributes->>'patchVersion', ''), '0')::int AS "patchVersion", -attributes->>'shardId' AS "shard", -attributes->'stats'->>'endGameReason' AS "result", -attributes->'stats'->>'queue' AS "queue", - -false AS "anyAFK", -'' AS "winningTeam", -0 AS "krakenCaptures", -0 AS "laneMinionsSlayed", -0 AS "jungleMinionsSlayed", -0 AS "heroDeaths" +COALESCE(NULLIF(attributes->>'patchVersion', ''), '0') AS "patchVersion", +attributes->>'shardId' AS "shardId", +attributes->'stats'->>'endGameReason' AS "endGameReason", +attributes->'stats'->>'queue' AS "queue" FROM match |
