summaryrefslogtreecommitdiff
path: root/src/include/executor/tablefunc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/executor/tablefunc.h')
-rw-r--r--src/include/executor/tablefunc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/executor/tablefunc.h b/src/include/executor/tablefunc.h
index 22ca916eb28..9c7b4808a8e 100644
--- a/src/include/executor/tablefunc.h
+++ b/src/include/executor/tablefunc.h
@@ -54,13 +54,13 @@ typedef struct TableFuncRoutine
void (*InitOpaque) (struct TableFuncScanState *state, int natts);
void (*SetDocument) (struct TableFuncScanState *state, Datum value);
void (*SetNamespace) (struct TableFuncScanState *state, char *name,
- char *uri);
+ char *uri);
void (*SetRowFilter) (struct TableFuncScanState *state, char *path);
void (*SetColumnFilter) (struct TableFuncScanState *state,
- char *path, int colnum);
+ char *path, int colnum);
bool (*FetchRow) (struct TableFuncScanState *state);
Datum (*GetValue) (struct TableFuncScanState *state, int colnum,
- Oid typid, int32 typmod, bool *isnull);
+ Oid typid, int32 typmod, bool *isnull);
void (*DestroyOpaque) (struct TableFuncScanState *state);
} TableFuncRoutine;