only make and use one table

This commit is contained in:
filifa 2024-07-31 20:04:31 -05:00
parent 78685d43bb
commit e873ed44b8
5 changed files with 9 additions and 18 deletions

View File

@ -37,4 +37,4 @@ then
fi
jqFilter='.highlights.highlights.items | map(select(.keywordsAll[].value == "highlight"))[] | {headline, id} + {url: (.playbacks | map(select(.name == "mp4Avc"))[0].url)}'
mlblive content -g $gamePk | jq -Sc --unbuffered "$jqFilter" | sed -u 's/$/0/' | writedb.sh -d $db -t highlights -c ''
mlblive content -g $gamePk | jq -Sc --unbuffered "$jqFilter" | sed -u 's/$/0/' | writedb.sh -d $db -t mlbdata -c ''

View File

@ -37,4 +37,4 @@ then
fi
jqFilter='{gamePk} + (.gameData.teams | {awayTeam: .away.teamName, homeTeam: .home.teamName}) + (.liveData.plays.allPlays[] | (.result + (.about | {atBatIndex, halfInning, inning, isComplete, isScoringPlay, hasReview})))'
mlblive subscribe -g $gamePk | jq -Sc --unbuffered "$jqFilter" | sed -u 's/$/0/' | writedb.sh -d $db -t plays -c ''
mlblive subscribe -g $gamePk | jq -Sc --unbuffered "$jqFilter" | sed -u 's/$/0/' | writedb.sh -d $db -t mlbdata -c ''

View File

@ -5,12 +5,12 @@ select
json ->> 'headline',
json ->> 'id',
json ->> 'url'
from highlights
from mlbdata
where
json ->> 'url' is not null and
posted = 0;
update highlights
update mlbdata
set posted = 1
where posted = 0;
commit;

View File

@ -9,13 +9,13 @@ json ->> 'awayTeam',
json ->> 'awayScore',
json ->> 'homeTeam',
json ->> 'homeScore'
from plays
from mlbdata
where
json ->> 'description' is not null and
json ->> 'isScoringPlay' = 1 and
posted = 0;
update plays
update mlbdata
set posted = 1
where posted = 0;
commit;

View File

@ -1,17 +1,8 @@
create table if not exists plays (
create table if not exists mlbdata (
"json" text unique on conflict ignore,
"posted" integer check ("posted" in (0, 1))
);
create index if not exists nonposted_plays
on plays(posted)
where posted = 0;
create table if not exists highlights (
"json" text unique on conflict ignore,
"posted" integer check ("posted" in (0, 1))
);
create index if not exists nonposted_highlights
on highlights(posted)
create index if not exists nonposted
on mlbdata(posted)
where posted = 0;