Skip to content

Commit 0cad3ad

Browse files
committed
C++: Add databaseMetadata and overlayChangedFiles tables to dbscheme
1 parent 42f0ce7 commit 0cad3ad

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

cpp/ql/lib/semmlecode.cpp.dbscheme

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
2+
/*- Database metadata -*/
3+
4+
/**
5+
* The CLI will automatically emit applicable tuples for this table,
6+
* such as `databaseMetadata("isOverlay", "true")` when building an
7+
* overlay database.
8+
*/
9+
databaseMetadata(
10+
string metadataKey: string ref,
11+
string value: string ref
12+
);
13+
14+
/*- Overlay support -*/
15+
16+
/**
17+
* The CLI will automatically emit tuples for each new/modified/deleted file
18+
* when building an overlay database.
19+
*/
20+
overlayChangedFiles(
21+
string path: string ref
22+
);
23+
124
/*- Compilations -*/
225

326
/**

0 commit comments

Comments
 (0)