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

Implement TPCH query 6 #260

Open
andygrove opened this issue Jul 25, 2020 · 1 comment
Open

Implement TPCH query 6 #260

andygrove opened this issue Jul 25, 2020 · 1 comment

Comments

@andygrove
Copy link
Collaborator

@andygrove andygrove commented Jul 25, 2020

Update the TPCH example to support query 6:

select
	sum(l_extendedprice * l_discount) as revenue
from
	lineitem
where
	l_shipdate >= date ':1'
	and l_shipdate < date ':1' + interval '1' year
	and l_discount between :2 - 0.01 and :2 + 0.01
	and l_quantity < :3;
@robotlovesyou
Copy link

@robotlovesyou robotlovesyou commented Aug 7, 2020

I think maybe this should have been closed when #309 was merged?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
2 participants
You can’t perform that action at this time.