stackql / stackql/stackql

[FEATURE] `IN` subquery list query optimization support

Open
#330 0 comments 0 reactions 1 assignee View on GitHub

@general-kroll-4-life is already working on this.

Since Nov 20, 2023.

enhancement
Dominant language
Go
Stars
991
Forks
86
Avg merge
2d 33m
Merged PRs (30d)
26

Description

Feature Description
An extension of https://github.com/stackql/stackql/issues/329, but instead of a list of scalar values the values can be obtained from a subquery (executed first).

Example(s)

SELECT
function_name,
region,
runtime,
arn
FROM aws.lambda.function
WHERE region = 'us-east-1'
AND data__Identifier IN 
(SELECT function_name
FROM aws.lambda.functions
WHERE region IN ('us-east-1','us-east-2','us-west-1','us-west-2','ap-south-1','ap-northeast-3','ap-northeast-2','ap-southeast-1','ap-southeast-2','ap-northeast-1','ca-central-1','eu-central-1','eu-west-1','eu-west-2','eu-west-3','eu-north-1','sa-east-1'))

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.