/**
  * Return true if the node references SESSION schema tables (temporary or permanent)
  *
  * @return true if references SESSION schema tables, else false
  * @exception StandardException Thrown on error
  */
 public boolean referencesSessionSchema() throws StandardException {
   // If lock table is on a SESSION schema table, then return true.
   return isSessionSchema(lockTableDescriptor.getSchemaName());
 }