| description | Reference for the codeql bqrs info command |
|---|
The codeql bqrs info command is used to display metadata for a BQRS file.
This command displays an overview of the data contained in the compact binary BQRS file that is the result of executing a query. It shows the names and sizes of each result set (table) in the BQRS file, and the column types of each result set.
It can also optionally precompute offsets for using the pagination options of codeql bqrs decode. This is mainly useful for IDE plugins.
The following is an example use of the command for inspecting a BQRS file:
# Show metadata for a `results.bqrs` file in the current working directory.
# Use the (default) text output format.
codeql bqrs info --format=text -- results.bqrs# Show metadata for a `results.bqrs` file in the current working directory.
# Use the JSON output format.
codeql bqrs info --format=json -- relative/path-to/results.bqrsRun codeql bqrs info -h for more information.
Run codeql bqrs info -h -vv for much more information.
codeql query run- Run queries to generate BQRS files
codeql bqrs decode- Convert BQRS files to readable formats