Thread

Commits

Same data as JSON: GET /api/v1/messages/:b64id/commits the thread's linked commits as JSON, with link sources. API reference →
  1. doc: Fix example of pg_restore_extended_stats()

  1. doc: fix pg_restore_extended_stats() example syntax

    Chao Li <li.evan.chao@gmail.com> — 2026-05-15T09:31:55Z

    Hi,
    
    I am testing pg_restore_extended_stats(), and noticed an mistake in the doc:
    
    ```
    SELECT pg_restore_extended_stats(
        'schemaname',            'tab_schema',
        'relname',               'tab_name',
        'statistics_schemaname', 'stats_schema',
        'statistics_name',       'stats_name',
        'inherited',             false,
        'n_distinct',            '[{"attributes" : [2,3], "ndistinct" : 4}]'::pg_ndistinct); <== “);” should be “,"
        'dependencies',          '{"2 => 1": 1.000000, "2 => -1": 1.000000, "2 => -2": 1.000000}'::pg_dependencies,
        'exprs',                 '[
    ```
    
    Best regards,
    --
    Chao Li (Evan)
    HighGo Software Co., Ltd.
    https://www.highgo.com/
    
    
    
    
    
  2. Re: doc: fix pg_restore_extended_stats() example syntax

    Michael Paquier <michael@paquier.xyz> — 2026-05-15T11:23:39Z

    On Fri, May 15, 2026 at 05:31:55PM +0800, Chao Li wrote:
    > I am testing pg_restore_extended_stats(), and noticed an mistake in
    > the doc:
    
    Yep, will fix later.  Thanks for the report.
    --
    Michael
    
  3. Re: doc: fix pg_restore_extended_stats() example syntax

    Michael Paquier <michael@paquier.xyz> — 2026-05-16T23:11:55Z

    On Fri, May 15, 2026 at 08:23:39PM +0900, Michael Paquier wrote:
    > Yep, will fix later.  Thanks for the report.
    
    Done as of 4111b91ab3d5.
    --
    Michael
    
  4. Re: doc: fix pg_restore_extended_stats() example syntax

    Chao Li <li.evan.chao@gmail.com> — 2026-05-17T00:37:24Z

    
    > On May 17, 2026, at 07:11, Michael Paquier <michael@paquier.xyz> wrote:
    > 
    > On Fri, May 15, 2026 at 08:23:39PM +0900, Michael Paquier wrote:
    >> Yep, will fix later.  Thanks for the report.
    > 
    > Done as of 4111b91ab3d5.
    > --
    > Michael
    
    Thanks for pushing.
    
    Best regards,
    --
    Chao Li (Evan)
    HighGo Software Co., Ltd.
    https://www.highgo.com/