Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rebuild manifest missed fields #8755

Merged
merged 2 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changes/unreleased/Features-20230914-074429.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ body: Add support for optional label in semantic_models, measures, dimensions an
time: 2023-09-14T07:44:29.828199-05:00
custom:
Author: emmyoop
Issue: "8595"
Issue: 8595 8755
4 changes: 2 additions & 2 deletions .changes/unreleased/Features-20230922-150754.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ kind: Features
body: Support `fill_nulls_with` and `join_to_timespine` for metric nodes
time: 2023-09-22T15:07:54.981752-07:00
custom:
Author: QMalcolm
Issue: "8593"
Author: QMalcolm emmyoop
Issue: 8593 8755
59 changes: 59 additions & 0 deletions schemas/dbt/manifest/v11.json
Original file line number Diff line number Diff line change
Expand Up @@ -4610,6 +4610,21 @@
}
],
"default": null
},
"join_to_timespine": {
"type": "boolean",
"default": false
},
"fill_nulls_with": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
Expand Down Expand Up @@ -5137,6 +5152,17 @@
],
"default": null
},
"label": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"role": {
"anyOf": [
{
Expand Down Expand Up @@ -5257,6 +5283,17 @@
],
"default": null
},
"label": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"create_metric": {
"type": "boolean",
"default": false
Expand Down Expand Up @@ -5381,6 +5418,17 @@
],
"default": null
},
"label": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"is_partition": {
"type": "boolean",
"default": false
Expand Down Expand Up @@ -5521,6 +5569,17 @@
],
"default": null
},
"label": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"defaults": {
"anyOf": [
{
Expand Down