From 06084a0da04f79e3680e3dddec1b3afba6498a32 Mon Sep 17 00:00:00 2001 From: Jesse Williams Date: Thu, 20 Nov 2025 09:14:33 -0800 Subject: [PATCH] add generator to tsvector type --- lib/types/tsvector.ex | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/types/tsvector.ex b/lib/types/tsvector.ex index 193a4c0b..d66cd4e1 100644 --- a/lib/types/tsvector.ex +++ b/lib/types/tsvector.ex @@ -64,4 +64,9 @@ defmodule AshPostgres.Tsvector do def cast_stored(_, _) do :error end + + @impl true + def generator(_constraints) do + StreamData.constant([]) + end end