# `Replicant.Decoder.OidDatabase`
[🔗](https://github.com/baselabs/replicant/blob/v0.3.1/lib/replicant/decoder/oid_database.ex#L1)

Maps a numeric PostgreSQL type ID to a descriptive string.

Implementation borrowed from Supabase Realtime, Cainophile, and epgsql.

# `name_for_type_id`

Maps a numeric PostgreSQL type ID to a descriptive string.

## Examples

    iex> name_for_type_id(1700)
    "numeric"

    iex> name_for_type_id(25)
    "text"

    iex> name_for_type_id(3802)
    "jsonb"

---

*Consult [api-reference.md](api-reference.md) for complete listing*
