def _load_setup_sql()

in evalbench/util/config.py [0:0]


def _load_setup_sql(sql_file_path: str):
    try:
        with open(sql_file_path, "r") as file:
            sql_content = file.read()
        sql_commands = [cmd.strip() for cmd in sql_content.split(";") if cmd.strip()]
        return sql_commands
    except Exception as e:
        return []