@@ -114,13 +114,13 @@ SELECT * FROM text_csv;
114114-- force_not_null is not allowed to be specified at any foreign object level:
115115ALTER FOREIGN DATA WRAPPER file_fdw OPTIONS (ADD force_not_null '*'); -- ERROR
116116ERROR: invalid option "force_not_null"
117- HINT:Valid options in this context are:
117+ HINT:There are no valid options in this context.
118118ALTER SERVER file_server OPTIONS (ADD force_not_null '*'); -- ERROR
119119ERROR: invalid option "force_not_null"
120- HINT:Valid options in this context are:
120+ HINT:There are no valid options in this context.
121121CREATE USER MAPPING FOR public SERVER file_server OPTIONS (force_not_null '*'); -- ERROR
122122ERROR: invalid option "force_not_null"
123- HINT:Valid options in this context are:
123+ HINT:There are no valid options in this context.
124124CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (force_not_null '*'); -- ERROR
125125ERROR: invalid option "force_not_null"
126126HINT: Valid options in this context are: filename, format, header, delimiter, quote, escape, null, encoding