C#: Add overlay builtins to the dbscheme.

This commit is contained in:
Michael Nebel
2025-09-12 10:38:19 +02:00
parent bcc6234a60
commit b48ce8dec2

View File

@@ -194,6 +194,24 @@ externalData(
sourceLocationPrefix(
string prefix: string ref);
/*
* Overlay support
*/
/**
* The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`,
* along with an `overlayChangedFiles` tuple for each new/modified/deleted file,
* when building an overlay database, and these can be used by the discard predicates.
*/
databaseMetadata(
string metadataKey : string ref,
string value : string ref
);
overlayChangedFiles(
string path : string ref
);
/*
* C# dbscheme
*/