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.
The text was updated successfully, but these errors were encountered:
kliushnichenko
added a commit
to kliushnichenko/simple-ddl-parser
that referenced
this issue
Mar 23, 2024
Example
Currently, if the reference to the function contains schema (
public.
andv2.
in the example above) parser returns an empty result.Would be nice to support this case as well.
The text was updated successfully, but these errors were encountered: