116117118119120121122123124125126
public void rename(String newName) { super.rename(newName); if (constraints != null) { for (int i = 0, size = constraints.size(); i < size; i++) { Constraint constraint = constraints.get(i); constraint.rebuild(); } } } /**
117118119120121122123124125126127
121122123124125126127128129130131
public void rename(String newName) { super.rename(newName); for (int i = 0; constraints != null && i < constraints.size(); i++) { Constraint constraint = constraints.get(i); constraint.rebuild(); } } /** * Lock the table for the given session.