Skip to content

Commit

Permalink
Re-add v12 changes to support custom granularity (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
QMalcolm authored Sep 12, 2024
1 parent 12843d8 commit 8b6ba37
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
54 changes: 54 additions & 0 deletions dbt/manifest/v12.json
Original file line number Diff line number Diff line change
Expand Up @@ -4672,6 +4672,33 @@
"properties": {
"standard_granularity_column": {
"type": "string"
},
"custom_granularities": {
"type": "array",
"items": {
"type": "object",
"title": "CustomGranularity",
"properties": {
"name": {
"type": "string"
},
"column_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"name"
]
}
}
},
"additionalProperties": false,
Expand Down Expand Up @@ -14371,6 +14398,33 @@
"properties": {
"standard_granularity_column": {
"type": "string"
},
"custom_granularities": {
"type": "array",
"items": {
"type": "object",
"title": "CustomGranularity",
"properties": {
"name": {
"type": "string"
},
"column_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
"required": [
"name"
]
}
}
},
"additionalProperties": false,
Expand Down
2 changes: 1 addition & 1 deletion dbt/manifest/v12/index.html

Large diffs are not rendered by default.

0 comments on commit 8b6ba37

Please sign in to comment.