mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
C++: Add databaseMetadata and overlayChangedFiles tables to dbscheme
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
/*- Compilations -*/
|
/*- Compilations -*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -2378,6 +2379,24 @@ link_parent(
|
|||||||
int link_target : @link_target ref
|
int link_target : @link_target ref
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The CLI will automatically emit applicable tuples for this table,
|
||||||
|
* such as `databaseMetadata("isOverlay", "true")` when building an
|
||||||
|
* overlay database.
|
||||||
|
*/
|
||||||
|
databaseMetadata(
|
||||||
|
string metadataKey: string ref,
|
||||||
|
string value: string ref
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The CLI will automatically emit tuples for each new/modified/deleted file
|
||||||
|
* when building an overlay database.
|
||||||
|
*/
|
||||||
|
overlayChangedFiles(
|
||||||
|
string path: string ref
|
||||||
|
);
|
||||||
|
|
||||||
/*- XML Files -*/
|
/*- XML Files -*/
|
||||||
|
|
||||||
xmlEncoding(
|
xmlEncoding(
|
||||||
|
|||||||
Reference in New Issue
Block a user