Joshua Kravitz

Results 12 issues of Joshua Kravitz

For those not using the provided python code to load the data, note that the file `tcga_subtypes_id_map.csv` maps a genentech ID to a patient ID of 2397, even though that...

This pull request fixes the issue described [here](https://github.com/dbt-labs/dbt-utils/issues/827). Should this macro handle the case where `fields|length == 0`, or is that case handled upstream?

**Describe the bug** When referencing a linked server in [openquery](https://learn.microsoft.com/en-us/sql/t-sql/functions/openquery-transact-sql?view=sql-server-ver16) in SQL Server, sqlfmt incorrectly formats linked server names that are in brackets (with uncommon characters). In my case, the...

bug
sqlserver-only

**Describe the bug** When I prepend `create view MyView as` to a query, sqlfmt no longer formats the file. **To Reproduce** ``` CREATE VIEW myview AS SELECT * FROM mytable...

enhancement
DDL-DML

I have dbt_utils and tsql_utils installed. On one of my model's columns, I have the following test: ```yaml - name: MyColumn tests: - not_null - accepted_values: values: ["Opt1", "Opt2", "Opt3",...

The culprit line is here: https://github.com/dbt-labs/dbt-utils/blob/6ba7b660b1d1b4e3b41cb0cf6c3c0e4a70ae54e4/macros/sql/generate_surrogate_key.sql#L27C35-L27C35 ```sql select a, b, c, d, {{ dbt_utils.generate_surrogate_key(["a"]) }} from my_table ``` results in error ```bash ('42000', '[42000] [Microsoft][ODBC Driver 18 for SQL Server][SQL...

Hi Prisma Team! My Prisma Client just crashed. Perhaps related to #10586? This is coming up repeatedly and really making it difficult to work with prisma... This is the report:...

bug/1-unconfirmed
kind/bug
tech/engines
topic: relations
topic: sql server
domain/client
topic: rust panic
topic: views
topic: (@)@unique
topic: unwrap error

When I run the code on the REST API on port 6333, the below code works fine. ```python (matches, _) = client.scroll( collection_name="database_mock_df_flat", scroll_filter={ # type: ignore "must": [{"key": "CDS_ids",...

Large uploads cause server to freeze, perhaps due to read-lock issues. ## Current Behavior When uploading large collections using the [python qdrant client](https://github.com/qdrant/qdrant-client), the upload generally freezes before finishing. When...

bug

**Is your feature request related to a problem? Please describe.** When using Cosine similarity, qdrant normalizes vectors. But, we sometimes need the unnormalized vector to run on-the-fly inference. **Describe the...