Describe the bug
In the CompilerApi.js file, there is no requestId in the query parameter of the applyRowLevelSecurity function, which causes this.getCompilers({ requestId: query.requestId }) requestId to always be undefined
To Reproduce
Steps to reproduce the behavior:
- Enter the ‘cubejs-server-core/src/core/CompilerApi.js file’
2.Search for the applyRowLevelSecurity function and see
Expected behavior
requestId should be obtained in context. query.requestId is always undefined.
e.g.
async applyRowLevelSecurity(query, context) {
const compilers = await this.getCompilers({ requestId: context.requestId });
...
Screenshots

Version:
[e.g. 1.1.7]