pg_am.dat 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #----------------------------------------------------------------------
  2. #
  3. # pg_am.dat
  4. # Initial contents of the pg_am system catalog.
  5. #
  6. # Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
  7. # Portions Copyright (c) 1994, Regents of the University of California
  8. #
  9. # src/include/catalog/pg_am.dat
  10. #
  11. #----------------------------------------------------------------------
  12. [
  13. { oid => '2', oid_symbol => 'HEAP_TABLE_AM_OID',
  14. descr => 'heap table access method',
  15. amname => 'heap', amhandler => 'heap_tableam_handler', amtype => 't' },
  16. { oid => '403', oid_symbol => 'BTREE_AM_OID',
  17. descr => 'b-tree index access method',
  18. amname => 'btree', amhandler => 'bthandler', amtype => 'i' },
  19. { oid => '405', oid_symbol => 'HASH_AM_OID',
  20. descr => 'hash index access method',
  21. amname => 'hash', amhandler => 'hashhandler', amtype => 'i' },
  22. { oid => '783', oid_symbol => 'GIST_AM_OID',
  23. descr => 'GiST index access method',
  24. amname => 'gist', amhandler => 'gisthandler', amtype => 'i' },
  25. { oid => '2742', oid_symbol => 'GIN_AM_OID',
  26. descr => 'GIN index access method',
  27. amname => 'gin', amhandler => 'ginhandler', amtype => 'i' },
  28. { oid => '4000', oid_symbol => 'SPGIST_AM_OID',
  29. descr => 'SP-GiST index access method',
  30. amname => 'spgist', amhandler => 'spghandler', amtype => 'i' },
  31. { oid => '3580', oid_symbol => 'BRIN_AM_OID',
  32. descr => 'block range index (BRIN) access method',
  33. amname => 'brin', amhandler => 'brinhandler', amtype => 'i' },
  34. ]