We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa35c0a commit c064e44Copy full SHA for c064e44
1 file changed
packages/cubejs-api-gateway/src/helpers/transformMetaExtended.ts
@@ -4,7 +4,7 @@ function stringifyMemberSql(sql?: () => string) {
4
}
5
6
const sqlStr = sql.toString();
7
- return sqlStr.substring(sqlStr.indexOf('=>') + 3);
+ return sqlStr.substring(sqlStr.indexOf('=>') + 2).trim();
8
9
10
type MemberPath = {
0 commit comments