Skip to content

Commit

Permalink
added index #7
Browse files Browse the repository at this point in the history
  • Loading branch information
sunil committed Sep 5, 2024
1 parent ba60934 commit ba95df2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion curiosity/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,13 @@ private static function pr_create_table() {
$sSQL = "CREATE INDEX idx_manifest on ':table' ( :m_col, :so_col, :i_col )";
$sSQL = self::pr_replace_sql_params($sSQL);
$oSqLDB->query($sSQL);
cDebug::extra_debug("index created");
cDebug::extra_debug("main index created");

//-------------create INDEX
$sSQL = "CREATE INDEX idx_manifest_date on ':table' ( :d_col )";
$sSQL = self::pr_replace_sql_params($sSQL);
$oSqLDB->query($sSQL);
cDebug::extra_debug("secondary index created");
}

//*****************************************************************************
Expand Down

0 comments on commit ba95df2

Please sign in to comment.