diff options
Diffstat (limited to 'src/include/nodes/plannodes.h')
-rw-r--r-- | src/include/nodes/plannodes.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index 292219db51f..37086c65903 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -557,12 +557,11 @@ struct CustomScan; typedef struct CustomScanMethods { const char *CustomName; + const char *LibraryName; + const char *SymbolName; /* Create execution state (CustomScanState) from a CustomScan plan node */ Node *(*CreateCustomScanState) (struct CustomScan *cscan); - /* Optional: print custom_xxx fields in some special way */ - void (*TextOutCustomScan) (StringInfo str, - const struct CustomScan *node); } CustomScanMethods; typedef struct CustomScan |