Add TODOs

velioglu/create_timeseries_table
Burak Velioglu 2021-08-22 22:27:08 +03:00
parent e7138bcd4c
commit 20471d2a38
No known key found for this signature in database
GPG Key ID: F6827E620F6549C6
2 changed files with 4 additions and 3 deletions

View File

@ -189,12 +189,13 @@ InitiateTimeseriesTablePartitions(Oid relationId)
SPI_finish(); SPI_finish();
} }
// TODO: If result is not true, error out! (Check metadata tables after erroring out!) /* TODO: If result is not true, error out! (Check metadata tables after erroring out!) */
SPI_execute(initiateTimeseriesPartitionsCommand->data, readOnly, 0); SPI_execute(initiateTimeseriesPartitionsCommand->data, readOnly, 0);
SPI_finish(); SPI_finish();
} }
/* /*
* Add tuples for the given table to the citus_timeseries_tables using given params * Add tuples for the given table to the citus_timeseries_tables using given params
*/ */

View File

@ -20,5 +20,5 @@ GRANT SELECT ON ALL tables IN SCHEMA citus_timeseries TO PUBLIC;
RESET search_path; RESET search_path;
-- Add trigger to delete from here -- TODO: Add trigger to delete from here
-- Add trigger to unschedule cron jobs in future -- TODO: Add trigger to unschedule cron jobs in future