Cody Fincher
Cody Fincher
I'm working through a similar problem now. Did you install the Oracle instant client into the Docker container or system you are running superset from? cx_oracle requires either the instant...
One additional note, in case it helps. I had to connect using a TNS formatted string instead of the easy connect format: `oracle+cx_oracle://username:password@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=host_or_scan_address)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=db_service_name)))` EDIT: Updated connect string to reference the...
It looks like I gave you the incorrect connect string format. According to the docs, it's `oracle+cx_oracle` instead of `cx_oracle+oracle`. Sorry about that. [Here](https://docs.sqlalchemy.org/en/14/dialects/oracle.html) is the documentation in case you...
Just to understand more. You'd be looking for the same CLI functionality that Litestar has but with the Typer CLI in `fastapi-cli`? I'd have to look a bit more, but...
Fixed in #352
You can also do something like this: ```python from sqlalchemy import null obj = await repo.get_one(MyModel.deleted_at.is_(None), id='id') ``` Depending on the data type used, the `item.field = None` will automatically...
I have a feeling this is going to be related to the `lambda_stmt`
Thanks for the additional tests. To make this work on 3.8 we'll have to update the hints used in the example file. Alternately, we could limit this test to only...
Sorry for the long review cycle on this. If you'd like to fix these, let me know and we can re-open this. There's been a number of changes that may...
@sfermigier thanks for reporting this, and I do see what you mean. Since we've not hit a stable API yet, I think we still potentially change this by adding some...