Let's say I have a drake plan where I create a SQL table in an external database, and after that job, I download from some table that depends on the initial job. My plan might look like this
drake_plan(up_job = create_sql_file('some_input.csv'),
down_job = download_from_sql('my_code.sql')
is there a way of manually forcing down_job to be downstream of up_job? There's nothing inherent in create_sql_file
or download_from_sql
that drake would be able to parse to infer the relationship but I'd still like to manually apply it.
Thanks!