QL: Fix naming.

This commit is contained in:
Mathias Vorreiter Pedersen
2023-02-23 17:34:07 +00:00
parent 9c8b8dff88
commit 229e291e1b
2 changed files with 3 additions and 3 deletions

View File

@@ -270,7 +270,7 @@ module KindPredicatesLog {
else result = "<Summary event>"
}
Array getRa(string ordering) { result = this.getObject("ra").getArray(ordering) }
Array getRA(string ordering) { result = this.getObject("ra").getArray(ordering) }
}
class SentinelEmpty extends SummaryEvent {
@@ -334,7 +334,7 @@ module KindPredicatesLog {
* Gets the RA for this event. Unlike recursive predicates, a COMPUTE_SIMPLE
* event only has one pipeline ordering (and it's named "pipeline").
*/
Array getRa() { result = this.getObject("ra").getArray("pipeline") }
Array getRA() { result = this.getObject("ra").getArray("pipeline") }
}
class ComputeRecursive extends SummaryEvent {

View File

@@ -37,7 +37,7 @@ predicate extractInformation(
pragma[only_bind_out](tuples.getFloat(pipelineIndex)) = maxTupleCount and
tuples = run.getCounts() and
duplicationPercentages = run.getDuplicationPercentage() and
ra = simple.getRa()
ra = simple.getRA()
)
}