home.social

#postgresql16 — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #postgresql16, aggregated by home.social.

  1. Aparentemente se les fue la olla a los de con la actualización a si se tiene instalado .

    trae , mientras que la v43 trae . Entonces, al actualizar el SO, todo peta, porque no puedes usar `postgresql-setup --upgrade`, ya que tu cluster es v16 y el upgrade sólo sirve de v17 a v18.

    Más info y solución, aquí: discussion.fedoraproject.org/t

  2. @petereisentraut
    Thanks for the link but the details are hard to understand. But the important sentence:
    ignore these characters for sorting
    I guess '*' is simply ignored,
    also by unix-sort:
    (echo "**F";echo "*G";echo "**K" )|sort
    **F *G **K
    #postgres #postgresql #postgresql16

  3. @truls46
    with collate "C" the order is
    **F **K *G 😀
    With Unix-sort I get also the unusual order:
    ( echo "**F"; echo "*G"; echo "**K" ) | sort
    **F *G **K
    It seems that '*' is simply ignored, i.e. ordering happens on ("F", "G","K")
    #postgres #postgresql #postgresql16

  4. @truls46
    I use #nixos stable 24.05; I think glibc 2.39-52.
    But that should not play a role!
    Since '*' < 'G' ,
    '**K' < '*G' should be true.
    Aren't strings ordered by lexicographical char order?
    #postgres #postgresql #postgresql16

  5. but since '*' < 'G' == true
    I would assume '**K' < '*G'
    Where am I mistaken?
    #postgres #postgresql #postgresql16

  6. '**F' < '*G' evaluates to true as does '*G' < '**K'
    so it holds '**F' < '*G' < '**K'
    #postgres #postgresql #postgresql16

  7. Strange sorting of #postgres 16.4
    select * from (values ('**K'),('*G'),('**F')) as t (c) order by c
    give the following order: **F *G **K
    but '*G' < '**K' evaluates to true.
    #postgresql #postgresql16

  8. Now that #PostgreSQL 16 has been released, Roji has also released the #Npgsql hotfixes 5.0.17, 6.0.10 and 7.0.6. They contain quite a few bugfixes and one replication-related compatibility fix for #PostgreSQL16, so make sure, you upgrade your #dotNET projects to the latest compatible version.

  9. 😲 #PostgreSQL16 will have a pg_stat_io to monitor ios 🤓

    Thanks @melanieplageman 👍