Skip to content

Commit 8885cdd

Browse files
authored
PostgreSQL: support splitting for int, bigint and numeric indexes (including unconstrained numerics) (#342)
1 parent e58ab56 commit 8885cdd

File tree

28 files changed

+4579
-2071
lines changed

28 files changed

+4579
-2071
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ integration_test_env_run: integration_test_env_clean
3232

3333
test_coverage: integration_test_env_run
3434
go test -coverpkg=./... -coverprofile=coverage_unit_tests.out -covermode=atomic ./app/... ./common/... ./tests/utils/...
35-
sleep 10
35+
sleep 15
3636
go test -c -o fq-connector-go-tests -coverpkg=./... -covermode=atomic ./tests
37-
./fq-connector-go-tests -projectPath="$(projectPath)" -test.coverprofile=coverage_integration_tests.out
37+
./fq-connector-go-tests -projectPath="$(projectPath)" -test.coverprofile=coverage_integration_tests.out -test.failfast
3838
cat coverage_unit_tests.out | grep -v 'pb.go\|mock.go\|library' > coverage.out
3939
cat coverage_integration_tests.out | grep -v 'atomic\|pb.go\|mock.go\|library' >> coverage.out
40-
go tool cover -func=sudo apt install cloc
40+
go tool cover -html=coverage.out
4141

4242
docker_compose_update:
4343
go run ./tools/docker_compose_update -path="$(path)"

api/common/gateways_config.pb.go

Lines changed: 463 additions & 219 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/observation/service.pb.go

Lines changed: 159 additions & 67 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/observation/service_grpc.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/service/connector.pb.go

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/service/connector_grpc.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)