|
1 | 1 | /* |
2 | 2 | * This dbscheme is auto-generated by 'semmle/dbscheme_gen.py'. |
| 3 | + * Run "make dbscheme" in python/extractor/ to regenerate. |
3 | 4 | * WARNING: Any modifications to this file will be lost. |
4 | 5 | * Relations can be changed by modifying master.py or |
5 | 6 | * by adding rules to dbscheme.template |
@@ -47,20 +48,26 @@ externalData( |
47 | 48 | string value : string ref |
48 | 49 | ); |
49 | 50 |
|
50 | | -/*- Overlay support -*/ |
| 51 | +/*- Database metadata -*/ |
51 | 52 |
|
52 | 53 | /** |
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. |
56 | 57 | */ |
57 | 58 | databaseMetadata( |
58 | | - string metadataKey : string ref, |
59 | | - string value : string ref |
| 59 | + string metadataKey: string ref, |
| 60 | + string value: string ref |
60 | 61 | ); |
61 | 62 |
|
| 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 | + */ |
62 | 69 | overlayChangedFiles( |
63 | | - string path : string ref |
| 70 | + string path: string ref |
64 | 71 | ); |
65 | 72 |
|
66 | 73 | /*- DEPRECATED: Snapshot date -*/ |
|
0 commit comments