About two days ago I ran a query with the following command:
query = 'select * from lsst_sim.simdr2 where random_id between 42 and 42.01 LIMIT 100000'
result = qc.query(sql=query,async_=True, fmt='table', out='mydb://random_100000_lsst_trilegal')
I believe it corresponds to 'qihdc0uu6eb8a7ni' and when I check the qc.status() it says it's executing.
When I try and access the table via:
df = qc.query("select * from mydb://random_100000_lsst_trilegal", fmt='table')
it's empty.
The command has been running for ~2 days, but that seems suspiciously long. Is there something I've done incorrectly?