Identify the logical error in the following code block intended to efficiently perform a broadcast join between DataFrame `storesDF` and the much larger DataFrame `employeesDF` using the key column `storeId`. The current implementation may contain inefficiencies. Code block: ```python storesDF.join(broadcast(employeesDF), "storeId") ``` | Databricks Certified Associate Developer for Apache Spark Quiz - LeetQuiz