Travis O'Neal
Travis O'Neal
If I had a function that returned a `geometry (Point)` as a computed column on my table, it does not attach the filter functions to it.
I have a need to implement striped coloring for an interactive map I'm creating. Basically, each polygon on my map could have one to many colors associated with it. See...
Replication steps: ```sql create table some_random_enum ( type text primary key, description text ); insert into some_random_enum (type, description) values ('type_one', 'Type One'); create table potato ( id serial primary...