File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,20 @@ externalData(
40
40
string value : string ref
41
41
);
42
42
43
+ /**
44
+ * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`,
45
+ * along with an `overlayChangedFiles` tuple for each new/modified/deleted file,
46
+ * when building an overlay database, and these can be used by the discard predicates.
47
+ */
48
+ databaseMetadata(
49
+ string metadataKey : string ref,
50
+ string value : string ref
51
+ );
52
+
53
+ overlayChangedFiles(
54
+ string path : string ref
55
+ );
56
+
43
57
/*- DEPRECATED: Snapshot date -*/
44
58
45
59
snapshotDate(unique date snapshotDate : date ref);
Original file line number Diff line number Diff line change @@ -47,6 +47,20 @@ externalData(
47
47
string value : string ref
48
48
);
49
49
50
+ /**
51
+ * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`,
52
+ * along with an `overlayChangedFiles` tuple for each new/modified/deleted file,
53
+ * when building an overlay database, and these can be used by the discard predicates.
54
+ */
55
+ databaseMetadata(
56
+ string metadataKey : string ref,
57
+ string value : string ref
58
+ );
59
+
60
+ overlayChangedFiles(
61
+ string path : string ref
62
+ );
63
+
50
64
/*- DEPRECATED: Snapshot date -*/
51
65
52
66
snapshotDate(unique date snapshotDate : date ref);
You can’t perform that action at this time.
0 commit comments