Skip to content

Commit 2fddf40

Browse files
well goddammit i worked
1 parent 1fe5298 commit 2fddf40

5 files changed

Lines changed: 1441 additions & 1249 deletions

File tree

CLAUDE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This document outlines the T-SQL coding style preferences for Erik Darling (Darling Data, LLC) and must be strictly followed when writing or modifying SQL code.
44

5+
## Project Constraints
6+
7+
- **No Additional Dependencies**: Do not create helper functions, procedures, views, or any other database objects as dependencies for stored procedures. All logic must be self-contained within the procedure itself to avoid deployment and dependency management complexity.
8+
59
## General Formatting
610

711
- **Keywords**: All SQL keywords in UPPERCASE (SELECT, FROM, WHERE, JOIN, etc.)

sp_HealthParser/sp_HealthParser.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,8 +1023,8 @@ AND ca.utc_timestamp < @end_date';
10231023
id bigint IDENTITY,
10241024
collection_time datetime2(7) NOT NULL DEFAULT SYSDATETIME(),
10251025
event_time datetime2(7) NULL,
1026-
scheduler_id int NULL,
1027-
cpu_id int NULL,
1026+
scheduler_id integer NULL,
1027+
cpu_id integer NULL,
10281028
status nvarchar(256) NULL,
10291029
is_online bit NULL,
10301030
is_runnable bit NULL,

0 commit comments

Comments
 (0)