From 9d4c96da3046a60b41c0a34350ddfb8b1677a185 Mon Sep 17 00:00:00 2001 From: James Guthrie Date: Fri, 11 Feb 2022 08:57:07 +0100 Subject: [PATCH] Fix broken build on develop branch `#[pgx(sql = false)]` suppresses SQL generation for this object, so the generated SQL is incomplete. We will use this SQL-suppression, but it's missing some pieces which still need to be developed. --- src/aggregates/gapfill_delta.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/aggregates/gapfill_delta.rs b/src/aggregates/gapfill_delta.rs index 6c6503be..82c2a564 100644 --- a/src/aggregates/gapfill_delta.rs +++ b/src/aggregates/gapfill_delta.rs @@ -27,7 +27,6 @@ unsafe extern "C" fn gapfill_delta_final(fcinfo: pg_sys::FunctionCallInfo) -> pg } #[derive(Serialize, Deserialize, PostgresType, Debug)] -#[pgx(sql = false)] pub struct GapfillDeltaTransition { window: VecDeque<(pg_sys::TimestampTz, f64)>, // a Datum for each index in the array, 0 by convention if the value is NULL