Skip to content

Commit ef75bf3

Browse files
committed
Ruby: Regenerate dbscheme
1 parent b368c0e commit ef75bf3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ruby/ql/lib/ruby.dbscheme

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// CodeQL database schema for Ruby
22
// Automatically generated from the tree-sitter grammar; do not edit
3+
// To regenerate, run 'make dbscheme' in ql/ruby/
34

45
/*- Files and folders -*/
56

@@ -109,11 +110,23 @@ yaml_locations(unique int locatable: @yaml_locatable ref,
109110
@yaml_locatable = @yaml_node | @yaml_error;
110111

111112
/*- Database metadata -*/
113+
114+
/**
115+
* The CLI will automatically emit applicable tuples for this table,
116+
* such as `databaseMetadata("isOverlay", "true")` when building an
117+
* overlay database.
118+
*/
112119
databaseMetadata(
113120
string metadataKey: string ref,
114121
string value: string ref
115122
);
116123

124+
/*- Overlay support -*/
125+
126+
/**
127+
* The CLI will automatically emit tuples for each new/modified/deleted file
128+
* when building an overlay database.
129+
*/
117130
overlayChangedFiles(
118131
string path: string ref
119132
);

0 commit comments

Comments
 (0)