Skip to content

Commit

Permalink
fix table name search
Browse files Browse the repository at this point in the history
  • Loading branch information
mail4umar committed Jun 14, 2024
1 parent 7848a9c commit f6604f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/ui/qprof_main.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
" vdf = vp.vDataFrame(query)\n",
" \n",
" # Manipulate table names\n",
" length_to_remove = len(selected_schema) + len(\"_dc_explain_plans_\") + 1\n",
" length_to_remove = len(\"qprof_dc_explain_plans_\") + 1\n",
" vdf['table_name'] = vdf['table_name'].apply(f\"SUBSTR(table_name, {length_to_remove})\")\n",
" \n",
" # Update options of the second dropdown\n",
Expand Down

0 comments on commit f6604f6

Please sign in to comment.