remove useless tests - we dont test the parser for 'wrong' results
This commit is contained in:
parent
3d27025598
commit
1ce5cc3928
1 changed files with 0 additions and 78 deletions
|
@ -1,78 +0,0 @@
|
|||
================================================================================
|
||||
wrong - trailing comma (1)
|
||||
================================================================================
|
||||
CREATE FUNCTION FOO (foo bar,) RETURNS void AS 'select' LANGUAGE sql;
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
(source_file
|
||||
(create_function_statement
|
||||
(function_signature
|
||||
(identifier)
|
||||
(function_parameters
|
||||
(var_declaration
|
||||
(identifier)
|
||||
(identifier))
|
||||
(ERROR)))
|
||||
(function_return
|
||||
(identifier))
|
||||
(string)
|
||||
(identifier)))
|
||||
|
||||
================================================================================
|
||||
wrong - trailing comma (2)
|
||||
================================================================================
|
||||
CREATE FUNCTION FOO (foo bar, foo bar,) RETURNS void AS 'select' LANGUAGE sql;
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
(source_file
|
||||
(create_function_statement
|
||||
(function_signature
|
||||
(identifier)
|
||||
(function_parameters
|
||||
(var_declaration
|
||||
(identifier)
|
||||
(identifier))
|
||||
(var_declaration
|
||||
(identifier)
|
||||
(identifier))
|
||||
(ERROR)))
|
||||
(function_return
|
||||
(identifier))
|
||||
(string)
|
||||
(identifier)))
|
||||
|
||||
================================================================================
|
||||
wrong - missing type
|
||||
================================================================================
|
||||
CREATE FUNCTION FOO (foo,) RETURNS void AS 'select' LANGUAGE sql;
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
(source_file
|
||||
(create_function_statement
|
||||
(function_signature
|
||||
(identifier)
|
||||
(function_parameters
|
||||
(ERROR
|
||||
(identifier))))
|
||||
(function_return
|
||||
(identifier))
|
||||
(string)
|
||||
(identifier)))
|
||||
|
||||
================================================================================
|
||||
wrong - many volatilities
|
||||
================================================================================
|
||||
CREATE FUNCTION FOO () RETURNS void AS 'select' LANGUAGE sql STABLE VOLATILE;
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
(source_file
|
||||
(create_function_statement
|
||||
(function_signature
|
||||
(identifier)
|
||||
(function_parameters))
|
||||
(function_return
|
||||
(identifier))
|
||||
(string)
|
||||
(identifier)
|
||||
(function_volatility))
|
||||
(ERROR))
|
Loading…
Reference in a new issue