From 3227c759d8e81b5939049556438d3adba969f5ca Mon Sep 17 00:00:00 2001 From: prql-bot <107324867+prql-bot@users.noreply.github.com> Date: Sun, 19 Jul 2026 07:21:21 +0000 Subject: [PATCH] docs: fix stale signature output in Elixir README examples The examples pinned `compiler version 0.3.1` and an outdated signature format. Mirror the binding's own doctests (`signature_comment: false`) so the shown output is the stable SQL and doesn't drift with each release. --- prqlc/bindings/elixir/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/prqlc/bindings/elixir/README.md b/prqlc/bindings/elixir/README.md index 0668c7024edf..e3be0b9ddd82 100644 --- a/prqlc/bindings/elixir/README.md +++ b/prqlc/bindings/elixir/README.md @@ -15,12 +15,12 @@ end ## Basic Usage ```elixir - iex> PRQL.compile("from customers") - {:ok, "SELECT\n *\nFROM\n customers\n\n-- Generated by PRQL compiler version 0.3.1 (https://prql-lang.org)\n"} + iex> PRQL.compile("from customers", signature_comment: false) + {:ok, "SELECT\n *\nFROM\n customers\n"} - iex> PRQL.compile("from customers\ntake 10", target: :mssql) - {:ok, "SELECT\n *\nFROM\n customers\nORDER BY\n (\n SELECT\n NULL\n ) OFFSET 0 ROWS\nFETCH FIRST\n 10 ROWS ONLY\n\n-- Generated by PRQL compiler version 0.3.1 (https://prql-lang.org)\n"} + iex> PRQL.compile("from customers\ntake 10", target: :mssql, signature_comment: false) + {:ok, "SELECT\n *\nFROM\n customers\nORDER BY\n (\n SELECT\n NULL\n ) OFFSET 0 ROWS\nFETCH FIRST\n 10 ROWS ONLY\n"} ``` ## Development