ertl

Results 20 comments of ertl

To be honest, I found the option of a configurable output directory very convenient. Especially since our application supports different databases and therefore the scripts where saved dynamically for the...

Any Update on this? Currently there exists a vulnarability within an implicit dependency of mssql 7.3.x ``` node_modules/@azure/msal-node/node_modules/jsonwebtoken @azure/msal-node =0.3.7-dev.1b5aa62 Depends on vulnerable versions of mssql node_modules/typeorm ```

To override the version you can use. ``` "dependencies": { "mssql": "^9.0.1", "typeorm": "0.3.11", }, "overrides": { "mssql": "^9.0.1" }, ``` I didn't set the stream flag to false ......

Can confirm the same behavour on oracle > Superfluous queries also apply in the case of combining getMany and limit on Postgres. As far as we can tell, it does...

It appears that the use of two queries in combination with a join and pagination works as designed. See the comments in the `SelectQueryBuilder.ts` class. > // for pagination enabled...

@vlad-ostrovski can't tell at the moment. I will have a look at it tomorrow... But can you verify that the fix isn't working I'm your case. By adding a check...

@vlad-ostrovski the value was not transformed, but the Runtime Error was eliminated, and the transformation was indirectly performed from the database. While this solution worked for me, I acknowledge that...

Actually, the desired behavior should remain the same. If a transformer is not used, the code will not execute. However, if a transformer is implemented, the else branch within 'if'...