Lukas Eder

Results 1551 comments of Lukas Eder

Some bugs in this area: - https://forums.oracle.com/ords/apexds/post/json-convenience-syntax-requires-from-clause-in-subquery-6359 - https://forums.oracle.com/ords/apexds/post/cannot-project-boolean-expressions-in-json-functions-2200

There's a fundamental disconnect between the original table and the produced embeddable. The embeddable is designed to be table agnostic - it can be referenced from several tables, even several...

I know but JDBC doesn't specify this. It offers only for supporting `OffsetDateTime`, not `ZonedDateTime` (or a hybrid).

> This project shows some benchmarked code: https://github.com/aaberg/sql2o just to give you an idea. Ah that benchmark. While it did help discover a few issues in jOOQ at the time,...

@arnaudroger I understand, but this mapper is instantiated every time in the benchmark. Perhaps it, too, caches some things if reused? In a fair benchmark, it should be reused.

> @agentgt Also I wasn't trying to single out jOOQ on bad performance (on the contrary the performance is great!) That wasn't my point. It just caught my attention more...

> @lukaseder I was reluctant to file an issue as I hadn’t yet setup an isolated performance test and I wanted to sensitive to your time (particularly because we are...

I wonder if this could be implemented relatively easily by now? It was implemented for `PgResultSetMetaData::getTableName`, in case of which a query like this one is issued: ```sql SELECT c.oid,...

In fact, `PgResultSetMetaData::getBaseSchemaName` is already implemented. It's just not being called by `PgResultSetMetaData::getSchemaName`

> Well it can but most people don't really wan't to take the hit of doing another round trip But the result is cached in `BaseConnection::getFieldMetadataCache`, so between the various...