Results 4 issues of Darshit Dave

### Which sample has a bug? quickstarts/taskqueues-backup-images/functions/index.js I have created my own queue with minor modifications provided in the **Failing Function code used** section. If someone can please help resolve...

type: bug

# Problem **Table**: **dataset_versions** https://github.com/MarquezProject/marquez/blob/0.42.0/api/src/main/java/marquez/db/DatasetVersionDao.java#L295 ``` ERROR: duplicate key value violates unique constraint "dataset_versions_dataset_uuid_version_key" DETAIL: Key (dataset_uuid, version)=(, ) already exists. STATEMENT: /* DatasetVersionDao.upsert */ INSERT INTO dataset_versions ( uuid,...

bug
db

Marquez version: `0.42.0` Related issue: https://github.com/MarquezProject/marquez/issues/2418 Related PR: https://github.com/MarquezProject/marquez/pull/2419 for the previous merge. Discussion thread: https://marquezproject.slack.com/archives/C01E8MQGJP7/p1701766646176309?thread_ts=1676320609.289789&cid=C01E8MQGJP7 Current query: ``` WITH selected_column_lineage AS ( SELECT DISTINCT ON (cl.output_dataset_field_uuid, cl.input_dataset_field_uuid) cl.* FROM...

column-level-lineage
db.perf

`newOrderInstruction` successfully passes with `connection.sendTransaction` and `connection.confirmTransaction`. But when I do: const marketState = await MarketState.retrieve( connection, marketKey, "finalized" ); const bidsSlab = await marketState.loadBidsSlab(connection, "finalized"); const depth = bidsSlab.getL2DepthJS(1,...