abcxyz / github-metrics-aggregator

Apache License 2.0
11 stars 3 forks source link

Fix sneaky bug where TVF sql statements cannot end in ; due to being wrapped by terraform provider in another SQL statement #165

Closed pdewilde closed 8 months ago

pdewilde commented 8 months ago

TF will actually call

CREATE OR REPLACE TABLE FUNCTION mydataset.names(argument INT64)
AS (
  ${YOUR_QUERY_HERE}
);

Unfortunately, this means it looks different to how views are declared, as they seem to tolerate ending in a ;

pdewilde commented 8 months ago

This is a test. Testing123. I wonder if this is just markdown?