Arpan Agrawal
Arpan Agrawal
Hi @sppalkia ! How can I use REPL to convert a weld program containing CUDFs to generate LLVM code? Thank!
Jira Link: [DB-3100](https://yugabyte.atlassian.net/browse/DB-3100) ### Description ``` yugabyte=# select count(oid) from pg_type; server closed the connection unexpectedly This probably means the server terminated abnormally before or while processing the request. The...
Jira Link: [DB-3631](https://yugabyte.atlassian.net/browse/DB-3631) ### Description This is currently happening only for the primary table in the tablet.
Jira Link: [DB-3443](https://yugabyte.atlassian.net/browse/DB-3443) ### Description To support CDC on colocated tables, there are couple of action items on Debezium connector: - [ ] Maintaining schema of multiple colocated tables. -...
Jira Link: [DB-3092](https://yugabyte.atlassian.net/browse/DB-3092) ### Description The below functions seem to have an unnecessary requirement of shared mutex: - GetPgSchemaName() - GetPgAttNameTypidMap() - GetPgTypeInfo() The task is to remove this requirement...
Jira Link: [DB-2697](https://yugabyte.atlassian.net/browse/DB-2697) ### Description `GetOrAddSchema` is called in every `GetChanges` call. It takes an exclusive lock which is sub-optimal. Optimize it along the lines of `GetEnumMapFromCache` (acquire shared lock...
Jira Link: [DB-17225](https://yugabyte.atlassian.net/browse/DB-17225) ### Description Consider the following scenario where a leaf partition has a pk, but the parent relation doesn’t: ``` create table part(a int, c int) partition by...
Jira Link: [DB-17268](https://yugabyte.atlassian.net/browse/DB-17268) ### Description ``` create table test(amount int); insert into test values (1), (2), (3); ALTER TABLE test ADD COLUMN simple int GENERATED ALWAYS AS ( amount *...
Jira Link: [DB-17267](https://yugabyte.atlassian.net/browse/DB-17267) ### Description - [ ] IndRowDetail: logs the index name and ybbasectid. It will be nice to log all the index attributes. - [ ] IndAttrDetail: logs...
Jira Link: [DB-4934](https://yugabyte.atlassian.net/browse/DB-4934) ### Description CDC currently relies on `pgschema_name` field in servers for (?). As a result, this field will need to be populated and kept in sync with...