Skip to content

Commit 8fca1cf

Browse files
committed
python: Regenerate dbscheme
1 parent ef75bf3 commit 8fca1cf

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

python/ql/lib/semmlecode.python.dbscheme

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* This dbscheme is auto-generated by 'semmle/dbscheme_gen.py'.
3+
* Run "make dbscheme" in python/extractor/ to regenerate.
34
* WARNING: Any modifications to this file will be lost.
45
* Relations can be changed by modifying master.py or
56
* by adding rules to dbscheme.template
@@ -47,20 +48,26 @@ externalData(
4748
string value : string ref
4849
);
4950

50-
/*- Overlay support -*/
51+
/*- Database metadata -*/
5152

5253
/**
53-
* The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`,
54-
* along with an `overlayChangedFiles` tuple for each new/modified/deleted file,
55-
* when building an overlay database, and these can be used by the discard predicates.
54+
* The CLI will automatically emit applicable tuples for this table,
55+
* such as `databaseMetadata("isOverlay", "true")` when building an
56+
* overlay database.
5657
*/
5758
databaseMetadata(
58-
string metadataKey : string ref,
59-
string value : string ref
59+
string metadataKey: string ref,
60+
string value: string ref
6061
);
6162

63+
/*- Overlay support -*/
64+
65+
/**
66+
* The CLI will automatically emit tuples for each new/modified/deleted file
67+
* when building an overlay database.
68+
*/
6269
overlayChangedFiles(
63-
string path : string ref
70+
string path: string ref
6471
);
6572

6673
/*- DEPRECATED: Snapshot date -*/

0 commit comments

Comments
 (0)