| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | Luka Zivkovic <lukazivkovic58(at)gmail(dot)com> |
| Cc: | pgsql-general(at)lists(dot)postgresql(dot)org |
| Subject: | Re: New operators and class for jsonb with gin indexing |
| Date: | 2021-02-23 15:28:55 |
| Message-ID: | 3822832.1614094135@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
Luka Zivkovic <lukazivkovic58(at)gmail(dot)com> writes:
> I am having problems applying gin indexing to my new operator class for
> type jsonb.
> I created an operator that can query(jsonb column) keys and dates where
> dates are more than, less than, equal and not equal to the one provided
> inside another jsonb.
> Because I want to make it use index search and not sequential search, I
> wanted to use gin indexing, but it says that i'm missing support functions.
> Did anybody try to do something like this?
There's not a whole lot of documentation about this, but there is some:
https://www.postgresql.org/docs/13/gin-extensibility.html
After reading that, I'd suggest looking into the code for gin opclass
support in various contrib modules (hstore might be a good start).
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Santosh Udupi | 2021-02-23 15:39:15 | Re: pg_restore - generated column - not populating |
| Previous Message | Adrian Klaver | 2021-02-23 15:26:57 | Re: pg_restore - generated column - not populating |