aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2016-02-03 10:38:50 -0500
committerRobert Haas <rhaas@postgresql.org>2016-02-03 10:38:50 -0500
commitf2305d40ec20e63f781983d103d819ad2b6c0faf (patch)
tree7cb47a6239b90c724ff1aa1713bc2299d8cf9a1e /src/backend/nodes
parentdc203dc3ac40a4b02b92fb827848a547d2957153 (diff)
downloadpostgresql-f2305d40ec20e63f781983d103d819ad2b6c0faf.tar.gz
postgresql-f2305d40ec20e63f781983d103d819ad2b6c0faf.zip
Remove CustomPath's TextOutCustomPath method.
You can't really do anything useful with this in the form it currently exists; among other problems, there's no way to reread whatever information might be produced when the path is output. Work is underway to replace this with a more useful and more general system of extensible nodes, but let's start by getting rid of this bit. Extracted from a larger patch by KaiGai Kohei.
Diffstat (limited to 'src/backend/nodes')
-rw-r--r--src/backend/nodes/outfuncs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c
index b487c002a8c..d59b9546543 100644
--- a/src/backend/nodes/outfuncs.c
+++ b/src/backend/nodes/outfuncs.c
@@ -1705,8 +1705,6 @@ _outCustomPath(StringInfo str, const CustomPath *node)
WRITE_NODE_FIELD(custom_private);
appendStringInfoString(str, " :methods ");
_outToken(str, node->methods->CustomName);
- if (node->methods->TextOutCustomPath)
- node->methods->TextOutCustomPath(str, node);
}
static void