gooderp18绿色标准版
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

36 行
1.3KB

  1. /*-------------------------------------------------------------------------
  2. *
  3. * parse_utilcmd.h
  4. * parse analysis for utility commands
  5. *
  6. *
  7. * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
  8. * Portions Copyright (c) 1994, Regents of the University of California
  9. *
  10. * src/include/parser/parse_utilcmd.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef PARSE_UTILCMD_H
  15. #define PARSE_UTILCMD_H
  16. #include "parser/parse_node.h"
  17. extern List *transformCreateStmt(CreateStmt *stmt, const char *queryString);
  18. extern List *transformAlterTableStmt(Oid relid, AlterTableStmt *stmt,
  19. const char *queryString);
  20. extern IndexStmt *transformIndexStmt(Oid relid, IndexStmt *stmt,
  21. const char *queryString);
  22. extern void transformRuleStmt(RuleStmt *stmt, const char *queryString,
  23. List **actions, Node **whereClause);
  24. extern List *transformCreateSchemaStmt(CreateSchemaStmt *stmt);
  25. extern PartitionBoundSpec *transformPartitionBound(ParseState *pstate, Relation parent,
  26. PartitionBoundSpec *spec);
  27. extern IndexStmt *generateClonedIndexStmt(RangeVar *heapRel,
  28. Relation source_idx,
  29. const AttrNumber *attmap, int attmap_length,
  30. Oid *constraintOid);
  31. #endif /* PARSE_UTILCMD_H */
上海开阖软件有限公司 沪ICP备12045867号-1