v0.88.md 780 B


title: "Materialize v0.88" date: 2024-02-21 released: true

patch: 1

v0.88

SQL

  • Allow LIMIT expressions to contain parameters.

      PREPARE foo AS SELECT generate_series(1, 10) LIMIT $1;
      EXECUTE foo (7::bigint);
    
      generate_series
      -----------------
                     1
                     2
                     3
                     4
                     5
                     6
                     7
    

Bug fixes and other improvements

  • Fix a bug that potentially prevented timestamp with timezone data from being correctly parsed when ingested through PostgreSQL sources {{% gh 25216 %}}.

  • Fix float parsing of certain zero values, such as 0. and .0 {{% gh 25141 %}}.

  • Fix multiple bugs related to interval rounding {{% gh 25202%}}.