From e9dedb95876ec36ec4f6db3172fb8972aef94d8a Mon Sep 17 00:00:00 2001 From: ballistic-booger Date: Thu, 16 Jul 2026 12:18:29 +1000 Subject: [PATCH] feat: add any and hstore types to NpgsqlDriver - include any and hstore types in the object variable mapping --- Drivers/NpgsqlDriver.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Drivers/NpgsqlDriver.cs b/Drivers/NpgsqlDriver.cs index 46f95436..622283d6 100644 --- a/Drivers/NpgsqlDriver.cs +++ b/Drivers/NpgsqlDriver.cs @@ -361,7 +361,9 @@ public NpgsqlDriver( ["object"] = new( new() { - { "anyarray", new() } + { "any", new() }, + { "anyarray", new() }, + { "hstore", new() } }, readerFn: (ordinal, _) => $"{Variable.Reader.AsVarName()}.GetValue({ordinal})" )