DanCodedThis

Results 26 issues of DanCodedThis

### Expected Behavior Connecting, being able to play ### Actual Behavior **1.** Getting an error in the _Velocity_ terminal: ```Terminal [21:05:29 INFO]: Booting up Velocity 3.4.0-SNAPSHOT (git-e69213f9-b473)... [21:05:30 INFO]: Loading...

type: bug

- Remove `dedicated_executor` - Use only one vanilla tokio runtime, no thread pools, just the basics (for now) - See if it increases performance (query execution speed) - Investigate if...

DataFusion
engine

- `CLIENT_SESSION_KEEP_ALIVE = true`, - If active, it will periodically send this (with the defined frequency on the client/driver): https://github.com/snowflakedb/snowflake-connector-python/blob/main/src/snowflake/connector/network.py#L587 - By doing this, it should keep this session alive...

dbt
api

- `DataFusion` doesn't support any `ESCAPE` char outside `\` - Could be an easy change in `DataFusion` internals (to be investigated) - Related to `LIKE ANY` #1606 & `ILIKE ANY`...

DataFusion
engine

## dbt-gitlab ``` 3 010001 (02000): SQL compilation error: column 'DEFAULT' not found ``` ## Example - Snowflake: ```sql create or replace TABLE testing_super AS SELECT 'yes' as DEFAULT; SELECT...

dbt
DataFusion
engine

- `regexp_count` function appears to be working correctly - What differs is: - Wrong errors - Wrong `` variants in this arguments - Reimplement this function using the utils regexp...

engine
functions
dt_string

- This was found as part of the `regexp_*` function family - However, this affects all strings - Parser is fine with `'\\'` but Logical plans seem to remove the...

help wanted
DataFusion
engine

## Problem - If a function can be re-registered mid service execution it's not registered in the `embucket-functions` - It is rather registered in the `core-executor`, which means: - Both...

help wanted
engine
functions

Right now, the cast rule is done as a Logical `AnalyzerRule`, but it may be done as any of the following (decide which is more correct): - As is -...

DataFusion
engine

We need to support the casting as `to_*` UDF calls to adhere to compatibility, not relying on DF cast. Now, this is supported via a **Logical** `AnalyzerRule` as `CastAnalyzer` (may...

DataFusion
engine
functions