* Register the access method for RUM as a custom index handler. * This allows us to create a 'custom' RUM index in the extension. * Today, this is temporary: This is needed until the RUM index supports * a custom configuration function proc for index operator classes. * By registering it here we maintain compatibility with existing GIN implementations. * Once we merge the RUM config changes i
| 273 | * Once we merge the RUM config changes into the mainline repo, this can be removed. |
| 274 | */ |
| 275 | Datum |
| 276 | extensionrumhandler(PG_FUNCTION_ARGS) |
| 277 | { |
| 278 | IndexAmRoutine *indexRoutine = GetRumIndexHandler(fcinfo); |
| 279 | PG_RETURN_POINTER(indexRoutine); |
| 280 | } |
| 281 | |
| 282 | |
| 283 | Datum |
nothing calls this directly
no test coverage detected