Florian Behrens

Results 9 comments of Florian Behrens

I would enjoy working on this, as it encompasses most of the stack and would give me a chance to quickly get to know the entire application. I could put...

I was thinking we could implement the cancellation as a stopping criterion that could be influenced from outside the model. The interface already supports stopping criteria. I haven't spent too...

As a first step, I would implement only the backend part of this feature. Goal: stop generating tokens when the event stream is closed. We can use the exception that...

Great, thanks. Then I'll implement this over the coming evenings. Shouldn't take long!

Status update: - spent a lot of time analyzing how to implement this - merged a cleanup in preparation for the implementation, which was reverted due to an unidentified bug...

If someone else would like to work on this, I'd be happy to share my insights and plan on how to do this.

@olliestanley From my side, this is ready to be merged, now that I've figured out why pre-commit was failing (see other message).

Here's a workaround that worked for us: multiply the column by 1.0. Example: instead of ``` SELECT timestamp, temperature FROM weather_data; ``` do ``` SELECT timestamp, (temperature * 1.0) as...

Perhaps this is related: [`ColumnInfo.decimalDigits` ](https://github.com/IBM/node-odbc/blob/3694c4d3d749d8c642c6994ac85eddfcf6de8630/lib/odbc.d.ts#L8) is reported as `0`, when it is actually `1`. This might also be an issue in our ODBC driver, though (no idea what is...