@@ -114,13 +114,13 @@ SELECT * FROM text_csv;
114
114
-- force_not_null is not allowed to be specified at any foreign object level:
115
115
ALTER FOREIGN DATA WRAPPER file_fdw OPTIONS (ADD force_not_null '*'); -- ERROR
116
116
ERROR: invalid option "force_not_null"
117
- HINT:Valid options in this context are:
117
+ HINT:There are no valid options in this context.
118
118
ALTER SERVER file_server OPTIONS (ADD force_not_null '*'); -- ERROR
119
119
ERROR: invalid option "force_not_null"
120
- HINT:Valid options in this context are:
120
+ HINT:There are no valid options in this context.
121
121
CREATE USER MAPPING FOR public SERVER file_server OPTIONS (force_not_null '*'); -- ERROR
122
122
ERROR: invalid option "force_not_null"
123
- HINT:Valid options in this context are:
123
+ HINT:There are no valid options in this context.
124
124
CREATE FOREIGN TABLE tbl () SERVER file_server OPTIONS (force_not_null '*'); -- ERROR
125
125
ERROR: invalid option "force_not_null"
126
126
HINT: Valid options in this context are: filename, format, header, delimiter, quote, escape, null, encoding