We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29c7444 commit 867c5c1Copy full SHA for 867c5c1
tinybird/datasources/fixtures/resend.datasource
@@ -1,6 +1,7 @@
1
SCHEMA >
2
`time` DateTime64(3) `json:$.created_at` DEFAULT now(),
3
- `record` JSON `json:$`
+ `type` String `json:$.type`,
4
+ `data` JSON `json:$.data`
5
6
ENGINE "MergeTree"
7
ENGINE_PARTITION_KEY "toYear(time)"
tinybird/datasources/fixtures/resend_simple.datasource
@@ -0,0 +1,7 @@
+SCHEMA >
+ `time` DateTime64(3) `json:$.created_at` DEFAULT now(),
+ `record` JSON `json:$`
+
+ENGINE "MergeTree"
+ENGINE_PARTITION_KEY "toYear(time)"
+ENGINE_SORTING_KEY "time"
0 commit comments