Add test for embedding on a view with group by

This commit is contained in:
steve-chavez
2018-12-12 12:07:30 -05:00
committed by Steve Chávez
parent 501edc718d
commit d78410473e
3 changed files with 16 additions and 0 deletions
+7
View File
@@ -1553,6 +1553,13 @@ select
from odd_years_books x
join private.publishers y on y.id = x.first_publisher_id;
create view test.projects_count_grouped_by as
select
client_id,
count(id) as number_of_projects
from projects
group by client_id;
CREATE TABLE test."Foo"(
id int primary key,
name text