function tripal_populate_mview

2.x tripal_core.mviews.api.inc tripal_populate_mview($mview_id)
3.x tripal_chado.DEPRECATED.api.inc tripal_populate_mview($mview_id)

Update a Materialized View.

Parameters

$mview_id: The unique identifier for the materialized view to be updated.

Return value

True if successful, FALSE otherwise.

2 calls to tripal_populate_mview()
drush_tripal_core_tripal_update_mview in legacy/tripal_core/tripal_core.drush.inc
DEPRECATED. Updates the specified materialized view.
tripal_update_mview in legacy/tripal_core/api/tripal_core.DEPRECATED.inc
1 string reference to 'tripal_populate_mview'

File

tripal_chado/api/tripal_chado.DEPRECATED.api.inc, line 231
These api functions are deprecated, if your site is currently using them please update your code with the newer tripal_chado functions.

Code

function tripal_populate_mview($mview_id) {
  chado_populate_mview($mview_id);
}