aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/nodes.h
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2023-12-16 18:20:03 +0100
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2023-12-16 18:20:03 +0100
commita6be0600ac3b71dda8277ab0fcbe59ee101ac1ce (patch)
tree6806ee9ad3420029505af3e06728e497cc61eb15 /src/include/nodes/nodes.h
parentb485ad7f07c80efbfd47329f138f0fe3a5acf013 (diff)
downloadpostgresql-a6be0600ac3b71dda8277ab0fcbe59ee101ac1ce.tar.gz
postgresql-a6be0600ac3b71dda8277ab0fcbe59ee101ac1ce.zip
Remove useless LIMIT_OPTION_DEFAULT value from LimitOption
During the development that led to commit 357889eb17bb, for a time we had the value LIMIT_OPTION_DEFAULT, which was mostly but not completely removed later on, before commit. Complete the removal now. Author: Zhang Mingli <avamingli@gmail.com> Discussion: https://postgr.es/m/59d61a1a-3858-475a-964f-24468c97cc67@Spark
Diffstat (limited to 'src/include/nodes/nodes.h')
-rw-r--r--src/include/nodes/nodes.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h
index 4c32682e4ce..a178d08727a 100644
--- a/src/include/nodes/nodes.h
+++ b/src/include/nodes/nodes.h
@@ -440,7 +440,6 @@ typedef enum LimitOption
{
LIMIT_OPTION_COUNT, /* FETCH FIRST... ONLY */
LIMIT_OPTION_WITH_TIES, /* FETCH FIRST... WITH TIES */
- LIMIT_OPTION_DEFAULT, /* No limit present */
} LimitOption;
#endif /* NODES_H */