Skip to content

Commit b03013f

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#105693
We have done changes in the line no:44,46 and 47 from: CREATE TABLE product_metrics ( metric_type CHAR(1), created_by VARCHAR, created_date DATE, metric_id INTEGER CONSTRAINT pk PRIMARY KEY (metric_type, created_by, created_date, metric_id)); to: CREATE TABLE product_metrics ( metric_type CHAR(1) NOT NULL, created_by VARCHAR, created_date DATE NOT NULL, metric_id INTEGER NOT NULL CONSTRAINT pk PRIMARY KEY (metric_type, created_by, created_date, metric_id)); ```
1 parent 9dbcf24 commit b03013f

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)