(node: QueryParser.QueryNode<any>)
| 56 | isParamRef(node.SelectStmt.targetList[0].ResTarget.val) |
| 57 | |
| 58 | const isSubquery = (node: QueryParser.QueryNode<any>) => |
| 59 | getNodeType(node).endsWith("Stmt") && !isPlaceholderSelect(node) |
| 60 | |
| 61 | const isReturningIntoParentQuery = (path: QueryNodePath<QueryParser.QueryNode<any>>) => |
| 62 | ["larg", "rarg", "selectStmt"].indexOf(path.parentPropKey) > -1 |
no test coverage detected