From 97b63bfeba9e3254709493325f7ed5e2711f6bc4 Mon Sep 17 00:00:00 2001 From: filifa Date: Thu, 8 Aug 2024 22:17:11 -0500 Subject: [PATCH] simplify games table --- games/mlbgames.sh | 6 +++--- highlights/mlbhighlightsave.sh | 2 +- plays/mlbplaysave.sh | 2 +- schema.sql | 16 +++++----------- 4 files changed, 10 insertions(+), 16 deletions(-) diff --git a/games/mlbgames.sh b/games/mlbgames.sh index 2af7628..aa90e10 100755 --- a/games/mlbgames.sh +++ b/games/mlbgames.sh @@ -29,7 +29,7 @@ then exit 1 fi -jqFilter='.dates[].games[] | "\(.gamePk)\(.)"' -fmt="OFS=\"\"; print \$1, \$2, 0" +jqFilter='.dates[].games[]' +fmt="OFS=\"\"; print \$0, 0" save="\"sqlite3 $db '.mode ascii' '.separator ' '.import /dev/stdin games'\"" -mlblive schedule -t $team | jq -r "$jqFilter" | awk -F  "{$fmt | $save; close($save)}" +mlblive schedule -t $team | jq -Sc "$jqFilter" | awk -F  "{$fmt | $save; close($save)}" diff --git a/highlights/mlbhighlightsave.sh b/highlights/mlbhighlightsave.sh index 4a9fcfe..0a5df96 100755 --- a/highlights/mlbhighlightsave.sh +++ b/highlights/mlbhighlightsave.sh @@ -23,7 +23,7 @@ fi # grab the game pk of a single live game, if multiple (in case of spring # training) -gamePk=$(sqlite3 $db "select gamePk from games where json ->> 'status' ->> 'detailedState' in ('In Progress', 'Game Over') limit 1") +gamePk=$(sqlite3 $db "select json ->> 'gamePk' from games where json ->> 'status' ->> 'detailedState' in ('In Progress', 'Game Over') limit 1") if [[ -z "$gamePk" ]] then echo "$0:" 'no live games found' >&2 diff --git a/plays/mlbplaysave.sh b/plays/mlbplaysave.sh index 396f804..2b95c70 100755 --- a/plays/mlbplaysave.sh +++ b/plays/mlbplaysave.sh @@ -23,7 +23,7 @@ fi # grab the game pk of a single live game, if multiple (in case of spring # training) -gamePk=$(sqlite3 $db "select gamePk from games where json ->> 'status' ->> 'detailedState' in ('In Progress', 'Warmup') limit 1") +gamePk=$(sqlite3 $db "select json ->> 'gamePk' from games where json ->> 'status' ->> 'detailedState' in ('In Progress', 'Warmup') limit 1") if [[ -z "$gamePk" ]] then echo "$0:" 'no live games found' >&2 diff --git a/schema.sql b/schema.sql index 3cbb5e1..9be4429 100644 --- a/schema.sql +++ b/schema.sql @@ -17,16 +17,10 @@ on highlights(posted) where posted = 0; create table if not exists games ( - gamePk integer, - json text, - posted integer, - unique (gamePk) on conflict ignore + "json" text unique on conflict ignore, + "posted" integer check ("posted" in (0, 1)), ); -create trigger if not exists delete_old_states -before insert on games -begin - delete from games - where gamePk = new.gamePk and - json ->> 'status' ->> 'detailedState' != new.json ->> 'status' ->> 'detailedState'; -end; +create index if not exists nonposted_games +on games(posted) +where posted = 0;