Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] IN subquery list query optimization support #330

Open
jeffreyaven opened this issue Nov 19, 2023 · 0 comments
Open

[FEATURE] IN subquery list query optimization support #330

jeffreyaven opened this issue Nov 19, 2023 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@jeffreyaven
Copy link
Member

jeffreyaven commented Nov 19, 2023

Feature Description
An extension of #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'))
@jeffreyaven jeffreyaven added the enhancement New feature or request label Nov 19, 2023
@jeffreyaven jeffreyaven changed the title [FEATURE] Async IN subquery list query optimization support [FEATURE] Async IN subquery list query optimization support Nov 19, 2023
@general-kroll-4-life general-kroll-4-life changed the title [FEATURE] Async IN subquery list query optimization support [FEATURE] IN subquery list query optimization support Nov 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: Todo
Development

No branches or pull requests

2 participants