Beispiel #1
0
 /**
  * Drop and remove the given local temporary constraint from this session.
  *
  * @param constraint the constraint
  */
 void removeLocalTempTableConstraint(Constraint constraint) {
   if (localTempTableConstraints != null) {
     localTempTableConstraints.remove(constraint.getName());
     synchronized (database) {
       constraint.removeChildrenAndResources(this);
     }
   }
 }