domain_prefix_table_exists($prefix, $table)Does a table exist -- we use this to bypass Drupal's default table prefixing check.
$prefix The table prefix used with this domain. Optional.
$table The name of the table being acted upon.
domain_prefix/domain_prefix.module, line 165
<?php
function domain_prefix_table_exists($prefix, $table) {
return db_table_exists(db_escape_table($prefix . $table));
}
?>