Tiago Novo

Results 4 issues of Tiago Novo

Similar issue is found on other implementations. See: https://github.com/feedzai/pdb/blob/6fd034a710ef0a8ddb45de31b96a2308683e6d9a/src/main/java/com/feedzai/commons/sql/abstraction/engine/impl/H2Engine.java#L520-L524

When performing a query to the database (using mysql backend): ```java Query q = select(all()) .from(table("table")) .where(eq("id", k("my\id")); engine.query(q); ``` pdb incorrectly escapes the query to ```sql SELECT * FROM...

This change transitions the project to JSR-330 annotations by following this [guide](https://maven.apache.org/maven-jsr330.html) and [this](https://github.com/eclipse/sisu.plexus/wiki/Plexus-to-JSR330). This doesn't touch any tests as we're not expecting any impacts.