@@ -31,14 +31,14 @@ INSERT INTO scan (branch_id, [timestamp], scan_type, last_scanned_commit, increm
31
31
(3 , ' 2022-02-24 17:00:00.000' , ' BASE' , ' qwerty1' , 0 , ' 0.0.0' ),
32
32
(3 , ' 2022-03-24 17:00:00.000' , ' BASE' , ' qwerty1' , 0 , ' 0.0.0' );
33
33
34
- INSERT INTO finding (branch_id, file_path, line_number, commit_id, commit_message, commit_timestamp, author, email, rule_name, status, comment) VALUES
35
- (1 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#1' , ' NOT_ANALYZED' , NULL ),
36
- (1 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#2' , ' NOT_ANALYZED' , NULL ),
37
- (2 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#1' , ' NOT_ANALYZED' , NULL ),
38
- (2 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#2' , ' NOT_ANALYZED' , NULL ),
39
- (3 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#1' , ' NOT_ANALYZED' , NULL ),
40
- (3 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#2' , ' NOT_ANALYZED' , NULL ),
41
- (3 , ' /path/to/file' , 123 , ' qwerty2' , ' this is commit 2' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#1' , ' NOT_ANALYZED' , NULL );
34
+ INSERT INTO finding (branch_id, file_path, line_number, commit_id, commit_message, commit_timestamp, author, email, rule_name, status, comment, column_start, column_end ) VALUES
35
+ (1 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#1' , ' NOT_ANALYZED' , NULL , 1 , 100 ),
36
+ (1 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#2' , ' NOT_ANALYZED' , NULL , 0 , 0 ),
37
+ (2 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#1' , ' NOT_ANALYZED' , NULL , 1 , 50 ),
38
+ (2 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#2' , ' NOT_ANALYZED' , NULL , 42 , 43 ),
39
+ (3 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#1' , ' NOT_ANALYZED' , NULL , 12 , 34 ),
40
+ (3 , ' /path/to/file' , 123 , ' qwerty1' , ' this is commit 1' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#2' , ' NOT_ANALYZED' , NULL , 21 , 34 ),
41
+ (3 , ' /path/to/file' , 123 , ' qwerty2' , ' this is commit 2' , ' 2021-01-01 00:00:00.000' , ' developer' , ' developer@abn.com' , ' rule#1' , ' NOT_ANALYZED' , NULL , 12 , 34 );
42
42
43
43
INSERT INTO scan_finding(scan_id, finding_id) VALUES
44
44
(1 , 1 ),
0 commit comments