* Creates a hash table that maps strings to HTAB pointers. */
| 1899 | * Creates a hash table that maps strings to HTAB pointers. |
| 1900 | */ |
| 1901 | static HTAB * |
| 1902 | CreateUserEntryHashSet() |
| 1903 | { |
| 1904 | HASHCTL hashInfo = CreateExtensionHashCTL( |
| 1905 | sizeof(UserRoleHashEntry), |
| 1906 | sizeof(UserRoleHashEntry), |
| 1907 | UserHashEntryCompareFunc, |
| 1908 | UserHashEntryHashFunc |
| 1909 | ); |
| 1910 | return hash_create("User Entry Hash Table", 32, &hashInfo, |
| 1911 | DefaultExtensionHashFlags); |
| 1912 | } |
| 1913 | |
| 1914 | |
| 1915 | /* |
no test coverage detected