gooderp18绿色标准版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
908B

  1. /*-------------------------------------------------------------------------
  2. *
  3. * keywords.h
  4. * PostgreSQL's list of SQL keywords
  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/common/keywords.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef KEYWORDS_H
  15. #define KEYWORDS_H
  16. #include "common/kwlookup.h"
  17. /* Keyword categories --- should match lists in gram.y */
  18. #define UNRESERVED_KEYWORD 0
  19. #define COL_NAME_KEYWORD 1
  20. #define TYPE_FUNC_NAME_KEYWORD 2
  21. #define RESERVED_KEYWORD 3
  22. #ifndef FRONTEND
  23. extern PGDLLIMPORT const ScanKeywordList ScanKeywords;
  24. extern PGDLLIMPORT const uint8 ScanKeywordCategories[];
  25. #else
  26. extern const ScanKeywordList ScanKeywords;
  27. extern const uint8 ScanKeywordCategories[];
  28. #endif
  29. #endif /* KEYWORDS_H */
上海开阖软件有限公司 沪ICP备12045867号-1