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
CREATETABLEfoo
(
entity_id UUID PRIMARY KEY DEFAULT public.getId(),
name VARCHAR(64),
CONSTRAINT my_constraint CHECK(v2.my_function(name) IS TRUE)
);
Currently, if the reference to the function contains schema (public. and v2. in the example above) parser returns an empty result.
Would be nice to support this case as well.