Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

unrecognized configuration parameter "custom_variable_classes"

Tags:

postgresql

I get this message after a system update:

unrecognized configuration parameter "custom_variable_classes" in file "/var/lib/pgsql/data/postgresql.conf" line 501

Are custom variable classes not supported any more?

like image 389
guettli Avatar asked Dec 20 '22 01:12

guettli


1 Answers

Since version 9.2 this statement is not needed any more:

http://www.postgresql.org/docs/current/interactive/release-9-2.html#AEN111020

Just remove or uncomment the line:

#custom_variable_classes = 'foo'             # list of custom variable class names
foo.bar=0
like image 62
guettli Avatar answered Mar 05 '23 15:03

guettli