mirror of
https://github.com/postgres/postgres.git
synced 2025-05-29 16:21:20 +03:00
Mark Scan as an abstract node type, too.
On further review, this one is never instantiated either.
This commit is contained in:
parent
b4f79d278f
commit
8c73c11a0d
@ -371,10 +371,14 @@ typedef struct BitmapOr
|
||||
/*
|
||||
* ==========
|
||||
* Scan nodes
|
||||
*
|
||||
* Scan is an abstract type that all relation scan plan types inherit from.
|
||||
* ==========
|
||||
*/
|
||||
typedef struct Scan
|
||||
{
|
||||
pg_node_attr(abstract)
|
||||
|
||||
Plan plan;
|
||||
Index scanrelid; /* relid is index into the range table */
|
||||
} Scan;
|
||||
|
@ -492,9 +492,6 @@ nodetag_to_string(NodeTag tag)
|
||||
case T_BitmapOr:
|
||||
return "BitmapOr";
|
||||
break;
|
||||
case T_Scan:
|
||||
return "Scan";
|
||||
break;
|
||||
case T_SeqScan:
|
||||
return "SeqScan";
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user