From d563fa491c2ff9188173035a98e4f1a34f499661 Mon Sep 17 00:00:00 2001 From: Thomas Lento Date: Tue, 14 Nov 2023 09:37:10 -0800 Subject: [PATCH] Remove create_metric parameter reference from 1.6 docs The create_metric parameter on measures defined in semantic models is listed in the 1.6 documentation, but support for it was not added until 1.7. --- website/docs/docs/build/semantic-models.md | 1 - 1 file changed, 1 deletion(-) diff --git a/website/docs/docs/build/semantic-models.md b/website/docs/docs/build/semantic-models.md index 9b74b5b4813..6f63ad2bf7c 100644 --- a/website/docs/docs/build/semantic-models.md +++ b/website/docs/docs/build/semantic-models.md @@ -178,7 +178,6 @@ For semantic models with a measure, you must have a [primary time group](/docs/b | `agg` | dbt supports the following aggregations: `sum`, `max`, `min`, `count_distinct`, and `sum_boolean`. | Required | | `expr` | You can either reference an existing column in the table or use a SQL expression to create or derive a new one. | Optional | | `non_additive_dimension` | Non-additive dimensions can be specified for measures that cannot be aggregated over certain dimensions, such as bank account balances, to avoid producing incorrect results. | Optional | -| `create_metric`* | You can create a metric directly from a measure with create_metric: True and specify its display name with create_metric_display_name. | Optional | _*Coming soon_