Skip to content

C#: Remove some unused legacy relations from the DB scheme #7746

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 26, 2022
Merged
Show file tree
Hide file tree
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,046 changes: 2,046 additions & 0 deletions csharp/downgrades/58a680081d22ec56c376539b7cca9521dc38fdbb/old.dbscheme

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
description: Remove unused legacy relations.
compatibility: backwards
54 changes: 1 addition & 53 deletions csharp/ql/lib/semmlecode.csharp.dbscheme
Original file line number Diff line number Diff line change
Expand Up @@ -166,67 +166,17 @@ compilation_assembly(
int assembly: @assembly ref
)

/*
* External artifacts
*/

externalDefects(
unique int id: @externalDefect,
string queryPath: string ref,
int location: @location ref,
string message: string ref,
float severity: float ref);

externalMetrics(
unique int id: @externalMetric,
string queryPath: string ref,
int location: @location ref,
float value: float ref);

externalData(
int id: @externalDataElement,
string path: string ref,
int column: int ref,
string value: string ref);

snapshotDate(
unique date snapshotDate: date ref);

sourceLocationPrefix(
string prefix: string ref);

/*
* Duplicate code
*/

duplicateCode(
unique int id: @duplication,
string relativePath: string ref,
int equivClass: int ref);

similarCode(
unique int id: @similarity,
string relativePath: string ref,
int equivClass: int ref);

@duplication_or_similarity = @duplication | @similarity

tokens(
int id: @duplication_or_similarity ref,
int offset: int ref,
int beginLine: int ref,
int beginColumn: int ref,
int endLine: int ref,
int endColumn: int ref);

/*
* C# dbscheme
*/

/** ELEMENTS **/

@element = @declaration | @stmt | @expr | @modifier | @attribute | @namespace_declaration
| @using_directive | @type_parameter_constraints | @external_element
| @using_directive | @type_parameter_constraints
| @xmllocatable | @asp_element | @namespace | @preprocessor_directive;

@declaration = @callable | @generic | @assignable | @namespace;
Expand All @@ -239,8 +189,6 @@ tokens(

@assignable_with_accessors = @property | @indexer;

@external_element = @externalMetric | @externalDefect | @externalDataElement;

@attributable = @assembly | @field | @parameter | @operator | @method | @constructor
| @destructor | @callable_accessor | @value_or_ref_type | @declaration_with_accessors
| @local_function;
Expand Down
Loading