Skip to content

Commit

Permalink
fix: disable BigQuery Timeseries functions
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Reichel <[email protected]>
Signed-off-by: manticore-projects <[email protected]>
  • Loading branch information
manticore-projects committed Dec 7, 2024
1 parent 7156a6f commit 36fa436
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,15 @@ public static TranspiledFunction from(Function f) {
enum UnsupportedFunction {
//@formatter:off
ASINH, ACOSH, COSH, SINH, COTH, COSINE_DISTANCE, CSC, CSCH, EUCLIDEAN_DISTANCE, SEC, SECH, APPROX_QUANTILES
, APPROX_TOP_COUNT, APPROX_TOP_SUM, SEARCH, VECTOR_SEARCH, APPENDS, EXTERNAL_OBJECT_TRANSFORM, GAP_FILL
, APPROX_TOP_COUNT, APPROX_TOP_SUM, SEARCH, VECTOR_SEARCH
, S2_CELLIDFROMPOINT, S2_COVERINGCELLIDS, ST_ANGLE, ST_AZIMUTH, ST_BUFFERWITHTOLERANCE, ST_CENTROID_AGG
, ST_CLOSESTPOINT, ST_CLUSTERDBSCAN, ST_GEOGFROM, ST_GEOGPOINTFROMGEOHASH, ST_GEOHASH, ST_HAUSDORFFDISTANCE
, ST_INTERIORRINGS, ST_INTERSECTSBOX, ST_ISCOLLECTION, ST_LINEINTERPOLATEPOINT, ST_LINELOCATEPOINT, ST_LINESUBSTRING
, ST_MAKEPOLYGONORIENTED, ST_SNAPTOGRID;
, ST_MAKEPOLYGONORIENTED, ST_SNAPTOGRID
// time series
// https://cloud.google.com/bigquery/docs/reference/standard-sql/table-functions-built-in#appends
, APPENDS, CHANGES, EXTERNAL_OBJECT_TRANSFORM, GAP_FILL, RANGE_SESSIONIZE
;
//@formatter:on

@SuppressWarnings({"PMD.EmptyCatchBlock"})
Expand Down

0 comments on commit 36fa436

Please sign in to comment.