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 pushdown for aggregate for PostgreSQL #3607

Merged
merged 10 commits into from
Oct 23, 2023
Next Next commit
wip
  • Loading branch information
noisersup committed Oct 18, 2023
commit d3cf00e2d4b499016049ad9207278bd0b9bfa319
8 changes: 0 additions & 8 deletions integration/aggregate_documents_compat_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,6 @@ func TestAggregateCompatOptions(t *testing.T) {
}

func TestAggregateCompatStages(t *testing.T) {
setup.SkipForPostgreSQL(t, "https://github.com/FerretDB/FerretDB/issues/3520")

t.Parallel()

testCases := map[string]aggregateStagesCompatTestCase{
Expand Down Expand Up @@ -904,8 +902,6 @@ func TestAggregateCompatGroupCount(t *testing.T) {
}

func TestAggregateCompatLimit(t *testing.T) {
setup.SkipForPostgreSQL(t, "https://github.com/FerretDB/FerretDB/issues/3520")

t.Parallel()

testCases := map[string]aggregateStagesCompatTestCase{
Expand Down Expand Up @@ -1247,8 +1243,6 @@ func TestAggregateCompatGroupSum(t *testing.T) {
}

func TestAggregateCompatMatch(t *testing.T) {
setup.SkipForPostgreSQL(t, "https://github.com/FerretDB/FerretDB/issues/3520")

t.Parallel()

// TODO https://github.com/FerretDB/FerretDB/issues/2291
Expand Down Expand Up @@ -1511,8 +1505,6 @@ func TestAggregateCompatUnwind(t *testing.T) {
}

func TestAggregateCompatSkip(t *testing.T) {
setup.SkipForPostgreSQL(t, "https://github.com/FerretDB/FerretDB/issues/3520")

t.Parallel()

testCases := map[string]aggregateStagesCompatTestCase{
Expand Down
Loading