pg_collation.dat 983 B

123456789101112131415161718192021222324252627
  1. #----------------------------------------------------------------------
  2. #
  3. # pg_collation.dat
  4. # Initial contents of the pg_collation system catalog.
  5. #
  6. # Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  7. # Portions Copyright (c) 1994, Regents of the University of California
  8. #
  9. # src/include/catalog/pg_collation.dat
  10. #
  11. #----------------------------------------------------------------------
  12. [
  13. { oid => '100', oid_symbol => 'DEFAULT_COLLATION_OID',
  14. descr => 'database\'s default collation',
  15. collname => 'default', collprovider => 'd', collencoding => '-1' },
  16. { oid => '950', oid_symbol => 'C_COLLATION_OID',
  17. descr => 'standard C collation',
  18. collname => 'C', collprovider => 'c', collencoding => '-1',
  19. collcollate => 'C', collctype => 'C' },
  20. { oid => '951', oid_symbol => 'POSIX_COLLATION_OID',
  21. descr => 'standard POSIX collation',
  22. collname => 'POSIX', collprovider => 'c', collencoding => '-1',
  23. collcollate => 'POSIX', collctype => 'POSIX' },
  24. ]