diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-02-20 17:17:27 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-02-20 17:17:27 +0100 |
| commit | 0a0acb5ad79cd1a15c5c715fa5f6abae0dc25736 (patch) | |
| tree | c0416ac5552219b236a3171ed88b1d225a46c60b /queries | |
| parent | 7eb07c0ccf2f464e3936b24136e41471ff1c1ff7 (diff) | |
| download | processor-0a0acb5ad79cd1a15c5c715fa5f6abae0dc25736.tar.gz processor-0a0acb5ad79cd1a15c5c715fa5f6abae0dc25736.zip | |
process partitions concurrently
Diffstat (limited to 'queries')
| -rw-r--r-- | queries/match.sql | 2 | ||||
| -rw-r--r-- | queries/participant.sql | 2 | ||||
| -rw-r--r-- | queries/player.sql | 2 | ||||
| -rw-r--r-- | queries/roster.sql | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/queries/match.sql b/queries/match.sql index 4f82933..2963172 100644 --- a/queries/match.sql +++ b/queries/match.sql @@ -12,4 +12,4 @@ attributes->'stats'->>'queue' AS "queue", relationships->'rosters'->'data'->0->>'id' as roster_1, relationships->'rosters'->'data'->1->>'id' as roster_2 -FROM match +FROM "match" diff --git a/queries/participant.sql b/queries/participant.sql index b7685a9..e9f8264 100644 --- a/queries/participant.sql +++ b/queries/participant.sql @@ -25,4 +25,4 @@ attributes->'stats'->'itemSells' AS "itemSells", attributes->'stats'->'itemUses' AS "itemUses", attributes->'stats'->'items' AS "items" -FROM participant +FROM "participant" diff --git a/queries/player.sql b/queries/player.sql index add926a..992cb44 100644 --- a/queries/player.sql +++ b/queries/player.sql @@ -12,4 +12,4 @@ attributes->>'name' AS "name", 0 AS "streak" -FROM player +FROM "player" diff --git a/queries/roster.sql b/queries/roster.sql index b5c4dff..eaf0ed6 100644 --- a/queries/roster.sql +++ b/queries/roster.sql @@ -14,4 +14,4 @@ relationships->'participants'->'data'->0->>'id' AS "participant_1", relationships->'participants'->'data'->1->>'id' AS "participant_2", relationships->'participants'->'data'->2->>'id' AS "participant_3" -FROM roster +FROM "roster" |
