@@ -9,33 +9,33 @@ public static void NullHandlingTests()
99 create function get_null1() returns text language sql as 'select null';
1010
1111 create function get_null2() returns text language sql as 'select null';
12- comment on function get_null2() is 'response-null-handling emptystring ';
12+ comment on function get_null2() is 'response_null_handling empty_string ';
1313
1414 create function get_null3() returns text language sql as 'select null';
15- comment on function get_null3() is 'response-null-handling nullliteral ';
15+ comment on function get_null3() is 'response_null_handling null_literal ';
1616
1717 create function get_null4() returns text language sql as 'select null';
18- comment on function get_null4() is 'response-null-handling nocontent ';
18+ comment on function get_null4() is 'response_null_handling no_content ';
1919
2020 create function get_nullable_param1(_t text) returns text language sql as 'select _t';
21- comment on function get_nullable_param1(text) is 'response-null-handling nocontent ';
21+ comment on function get_nullable_param1(text) is 'response_null_handling no_content ';
2222
2323 create function get_nullable_param2(_t text) returns text language sql as 'select _t';
2424 comment on function get_nullable_param2(text) is '
25- response-null-handling nocontent
26- query-string-null-handling ignore
25+ response_null_handling no_content
26+ query_string_null_handling ignore
2727 ';
2828
2929 create function get_nullable_param3(_t text) returns text language sql as 'select _t';
3030 comment on function get_nullable_param3(text) is '
31- response-null-handling nocontent
32- query-string-null-handling EmptyString
31+ response_null_handling no_content
32+ query_string_null_handling empty_string
3333 ';
3434
3535 create function get_nullable_param4(_t text) returns text language sql as 'select _t';
3636 comment on function get_nullable_param4(text) is '
37- response-null-handling nocontent
38- query-string-null-handling NullLiteral
37+ response_null_handling no_content
38+ query_string_null_handling null_literal
3939 ';
4040 """ ) ;
4141 }
0 commit comments