Sébastien DAVID
Sébastien DAVID
I'm facing the same problem (Typo3 10.4.9 + BP 11.0.2). I have nothing in my logs, but this might be because I'm using a docker container. If some changes have...
I just had a look to the mybatis-spring repository, and found a similar issue reported by @honzasmuk : https://github.com/mybatis/spring/issues/219
Hi, I understand now that the rule > objects retrieved are not shared and can be safely modified by the caller is only concerning objects retrieved from the cache (i.e....
Hi @harawata , You're right about the performance. For now, I'm doing a copy of the object in my transactionnal method, before modifying it. I implemented the `clone()` method on...
As the `options.bowerOptions.production` is only used when `options.install=true`, the only way to have all the assets copied in the target dir, and to have the ability to reference dev-deps (for...
@stefanuebe This workaround does not work for us, when the content of the contextual menu is dynamically generated regarding the clicked item. By using the following code, when an item...
Ok. As I didn't find a related issue in the content of the milestone 1.7.6, I thought it was an issue. Here is the link from the google code issue...
Thanks Dave for your answer. Well, "ClientUser" is a standard property name specified by `java.sql.Connection.setClientInfo`. I was not expecting a config param with that exact name. But after having a...
I don't know if it is part of the SQL standard. See the javadoc : https://docs.oracle.com/javase/8/docs/api/java/sql/Connection.html#setClientInfo(java.lang.String,%20java.lang.String) ``` The following are standard client info properties. Drivers are not required to support...
Actually, the PgConnection class from the JDBC driver is already performing a "bridge" between "ApplicationName" (Java) and "application_name" (PG) See lines https://github.com/pgjdbc/pgjdbc/blob/4a4e664a868421e4ea8283b685a8abdf4ec907ab/pgjdbc/src/main/java/org/postgresql/jdbc/PgConnection.java#L1458 and https://github.com/pgjdbc/pgjdbc/blob/4a4e664a868421e4ea8283b685a8abdf4ec907ab/pgjdbc/src/main/java/org/postgresql/jdbc/PgConnection.java#L1468