Arunprasad Rajkumar

Results 50 issues of Arunprasad Rajkumar

I'm trying from a machine which is already connected to the internet via proxy. It is not working.

Currently the logic which invokes Configurable updaterset lives in registry package. IMO, this doesn't really have any association with registry, it is more close to updaterset. Signed-off-by: Arunprasad Rajkumar

This PR adds snyk attribution and utm param for requests coming from Clair component. This is just a stop gap solution to unblock Quay 3.5.2 release. ### Sample response ```...

Before this commit, the following operation was disallowed: ```sql ALTER TABLE foo ADD CONSTRAINT foo_pkey PRIMARY KEY USING INDEX foo_pkey ``` pgcopydb, the tool that powers our migration process[1], handles...

I want to maintain the extension version as same as on the source. I tried using --requirements with `pgcopydb clone`, but it doesn't work. ``` pgcopydb list extensions --requirements --json...

bug

Updating a row value in the following schema fails with error ``` create table metrics( "SerialNumber" integer generated always as identity, name text); ``` ``` ERROR: column "SerialNumber" can only...

bug
enhancement

During the migration, I would like to exclude a FK constraint.

## Step to reproduce the problem 1. Create matview on source ``` create materialized view metrics_count AS SELECT 1; ``` 2. Launch pgcopydb with follow ``` pgcopydb clone --follow ```...

When all column values in the SET clause are equal to those in the WHERE clause, we remove all columns from the SET clause. This results in an invalid UPDATE...