Skip to content
Merged
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 install/06_ensure_collection_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ BEGIN
collection_time datetime2(7) NOT NULL DEFAULT SYSDATETIME(),
sample_time datetime2(7) NOT NULL,
sqlserver_cpu_utilization integer NOT NULL,
other_process_cpu_utilization integer NOT NULL,
other_process_cpu_utilization integer NULL, /* #1048: NULL on Linux (host CPU not derivable); matches install/02 + upgrade 02 */
total_cpu_utilization AS (sqlserver_cpu_utilization + other_process_cpu_utilization) PERSISTED,
CONSTRAINT PK_cpu_utilization_stats PRIMARY KEY CLUSTERED (collection_time, collection_id) WITH (DATA_COMPRESSION = PAGE)
);
Expand Down
Loading