Skip to content

Commit 0730fc5

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into rolyon-mto-metadata-subservice-remove
2 parents 9507f07 + c604471 commit 0730fc5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/hdinsight/hdinsight-phoenix-in-hdinsight.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ For example, here is a physical table named `product_metrics` with the following
4141

4242
```sql
4343
CREATE TABLE product_metrics (
44-
metric_type CHAR(1),
44+
metric_type CHAR(1) NOT NULL,
4545
created_by VARCHAR,
46-
created_date DATE,
47-
metric_id INTEGER
46+
created_date DATE NOT NULL,
47+
metric_id INTEGER NOT NULL
4848
CONSTRAINT pk PRIMARY KEY (metric_type, created_by, created_date, metric_id));
4949
```
5050

0 commit comments

Comments
 (0)