"Jin Heo" <[EMAIL PROTECTED]> writes:

> Now it looks good.. The problem was with the TPCW implementation from
> Wisconsin. They unecessarily drop tempory tables even though the
> tables are automatically deleted after session is closed in MySQL.


I'm afraid this is a quite common practice.

try {
   stmt.executeUpdate("DROP TABLE temp");
}
catch (SQLException) {
  // ignore if already dropped
}


Maybe we should increase (decrease?) the level from WARN to INFO in
such a case?

Hopefully this part of the code is not shared by more severe
conditions?







_______________________________________________
Sequoia mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/sequoia

Reply via email to