mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
13 lines
385 B
Plaintext
13 lines
385 B
Plaintext
/**
|
|
* @name Extraction consistency
|
|
* @description Lists the extraction inconsistencies (errors) in the database. This query is intended for internal use.
|
|
* @kind table
|
|
* @id rust/diagnostics/extraction-consistency
|
|
*/
|
|
|
|
import codeql.rust.Diagnostics
|
|
|
|
query predicate extractionError(ExtractionError ee) { any() }
|
|
|
|
query predicate extractionWarning(ExtractionWarning ew) { any() }
|