summaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2023-03-29 08:25:12 +0200
committerPeter Eisentraut <peter@eisentraut.org>2023-03-29 08:25:12 +0200
commit0d15afc875f44bcb0adc244c4d9034023f99b609 (patch)
tree14cfc606b326bd81d6855cb35fa52d3ed69f7849 /src/backend/commands/explain.c
parent062a8444242404242f7c2b814fed37b329639408 (diff)
downloadpostgresql-0d15afc875f44bcb0adc244c4d9034023f99b609.tar.gz
Simplify useless 0L constants
In ancient times, these belonged to arguments or fields that were actually of type long, but now they are not anymore, so this "L" decoration is just confusing. (Some other 0L and other "L" constants remain, where they are actually associated with a long type.)
Diffstat (limited to 'src/backend/commands/explain.c')
-rw-r--r--src/backend/commands/explain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c
index 878d2fd172..7e48e9c210 100644
--- a/src/backend/commands/explain.c
+++ b/src/backend/commands/explain.c
@@ -601,7 +601,7 @@ ExplainOnePlan(PlannedStmt *plannedstmt, IntoClause *into, ExplainState *es,
dir = ForwardScanDirection;
/* run the plan */
- ExecutorRun(queryDesc, dir, 0L, true);
+ ExecutorRun(queryDesc, dir, 0, true);
/* run cleanup too */
ExecutorFinish(queryDesc);