added a missing dependency; added support for redshift queries to return 0 rows

This commit is contained in:
Ari Brown 2024-02-01 14:56:48 -05:00
parent 6e249086d2
commit 40d2eefd81
3 changed files with 17 additions and 13 deletions

View file

@ -9,7 +9,10 @@ red = m.redshift("s3://haystac-te-athena/",
workgroup = "phase1-trial2")
query = red.query("""select agent, st_astext(geom), timestamp from
public.baseline_v1 where agent = 44 limit 200""")
public.baseline_v1 where agent = 4 limit 200""")
import IPython
IPython.embed()
data = query.results()