使用python的模块psycopg2打印SQL执行计划

问题描述 投票:0回答:1

有什么方法我可以打印SQL执行计划中的信息,以便在使用python和psycopg2模块时在终端中查看它?

我尝试了以下内容,但终端中没有显示任何内容:

cur.execute(cur.mogrify('explain analyze ' + sql_query, vals)

并使用print返回None

print(cur.execute(cur.mogrify('explain analyze ' + sql_query, vals))

this question,我也尝试了以下,但也没有工作:

cur.execute("LOAD 'auto_explain';")
cur.execute("SET auto_explain.log_min_duration = {min_ms};".format(min_ms=0))
cur.execute(sql_query, vals)
python-3.x psycopg2 sql-execution-plan explain
1个回答
0
投票

在发布问题后,我想出了答案。实际上很基本。我只需要获取它,就像使用任何其他SELECT命令一样。

如果其他人有同样的问题:

cur.execute(cur.mogrify('explain analyze ' + sql_query, vals))
analyze_fetched = cur.fetchall()
print(analyze_fetched)
© www.soinside.com 2019 - 2024. All rights reserved.