You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create function test2(val jsonb) returns jsonb
language plpythonu
transform for type jsonb
as $$
assert isinstance(val,int)
print (val)
return (val)
$$;
select test2('1'::jsonb);
Assert says that it's not an int - it's an array of 1 int element