Skip to content

Commit

Permalink
Merge branch 'current' into mirnawong1-patch-28
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 committed Sep 20, 2024
2 parents f7bfdbe + 5a203a4 commit b4535ec
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
5 changes: 2 additions & 3 deletions website/docs/docs/build/saved-queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,8 @@ To enable saved queries at the project level, you can set the `saved-queries` co
```yaml
saved-queries:
my_saved_query:
config:
+cache:
enabled: true
+cache:
enabled: true
```
</File>

Expand Down
4 changes: 2 additions & 2 deletions website/docs/docs/use-dbt-semantic-layer/deploy-sl.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ import RunProdJob from '/snippets/_sl-run-prod-job.md';

## Next steps
After you've executed a job and deployed your Semantic Layer:
- [Set up your Semantic Layer](/docs/use-dbt-semantic-layer/setup-sl) in dbt Cloud. g
- [Set up your Semantic Layer](/docs/use-dbt-semantic-layer/setup-sl) in dbt Cloud.
- Discover the [available integrations](/docs/cloud-integrations/avail-sl-integrations), such as Tableau, Google Sheets, Microsoft Excel, and more.
- Start querying your metrics with the [API query syntax](/docs/dbt-cloud-apis/sl-jdbc#querying-the-api-for-metric-metadata).


## Related docs
- [Optimize querying performance](/docs/use-dbt-semantic-layer/sl-cache) using declarative caching.
- [Validate semantic nodes in CI](/docs/deploy/ci-jobs#semantic-validations-in-ci) to ensure code changes made to dbt models don't break these metrics.
- If you haven't already, learn how to [build you metrics and semantic models](/docs/build/build-metrics-intro) in your development tool of choice.
- If you haven't already, learn how to [build your metrics and semantic models](/docs/build/build-metrics-intro) in your development tool of choice.
5 changes: 2 additions & 3 deletions website/docs/reference/dbt_project.yml.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,8 @@ It's important to follow the correct YAML naming conventions for the configs in
```yml
saved-queries: # Use dashes for resource types in the dbt_project.yml file.
my_saved_query:
config:
+cache:
enabled: true
+cache:
enabled: true
```
</File>

Expand Down
2 changes: 1 addition & 1 deletion website/docs/reference/resource-properties/quote.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ select user_group as "group"
```

Without setting `quote: true`:
- Schema tests applied to this column may fail due to invalid SQL
- [Data tests](/docs/build/data-tests) applied to this column may fail due to invalid SQL
- Documentation may not render correctly, e.g. `group` and `"group"` may not be matched as the same column name.

## Example
Expand Down

0 comments on commit b4535ec

Please sign in to comment.