In 002.schema.config.sql there was a small typo for "z3950attr_name_is_valid"
where that should be "z3950_attr_name_is_valid" with the underscore between.
Fix to stop breakage on new database installs.
Signed-off-by: Ben Shum <ben@evergreener.net>
));
CREATE OR REPLACE FUNCTION
- evergreen.z3950attr_name_is_valid() RETURNS TRIGGER AS $func$
+ evergreen.z3950_attr_name_is_valid() RETURNS TRIGGER AS $func$
BEGIN
PERFORM * FROM config.z3950_attr WHERE name = NEW.z3950_attr_type;