Skip to content
Open
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,469 changes: 2,469 additions & 0 deletions cpp/downgrades/a42ce5fc943254097f85471b94ae2247e819104a/old.dbscheme

Large diffs are not rendered by default.

2,450 changes: 2,450 additions & 0 deletions cpp/downgrades/a42ce5fc943254097f85471b94ae2247e819104a/semmlecode.dbscheme

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
description: Add databaseMetadata and overlayChangedFiles relations
compatibility: full
databaseMetadata.rel: delete
overlayChangedFiles.rel: delete
1 change: 1 addition & 0 deletions cpp/ql/lib/qlpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ dataExtensions:
- ext/deallocation/*.model.yml
- ext/allocation/*.model.yml
warnOnImplicitThis: true
compileForOverlayEval: true
19 changes: 19 additions & 0 deletions cpp/ql/lib/semmlecode.cpp.dbscheme
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

/*- Compilations -*/

/**
Expand Down Expand Up @@ -2378,6 +2379,24 @@ link_parent(
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 -*/

xmlEncoding(
Expand Down
Loading
Loading