You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the JSQLParser4.9 tool to parse SQL DDL statements, but I encountered a problem when parsing the following statement:
SQL Example:
Simplified Query Example, focusing on the failing feature
-- Replace with your ACTUAL exampleDROPFUNCTION IF EXISTS "fin"."restore_fund_data"("in_fund_id" int8);
CREATE OR REPLACEFUNCTION "fin"."restore_fund_data"("in_fund_id" int8)
RETURNS "pg_catalog"."varchar"AS $BODY$
DECLARE
message VARCHAR;
open rec_cur;
close proj_info_cur;
********
RETURN 'success';
END $BODY$
LANGUAGE plpgsql VOLATILE
COST 100;
Software Information:
JSqlParser 4.9 and 4.8
Database PostgreSQL
Thank you very much!
The text was updated successfully, but these errors were encountered:
hi there!
I am using the JSQLParser4.9 tool to parse SQL DDL statements, but I encountered a problem when parsing the following statement:
SQL Example:
Software Information:
Thank you very much!
The text was updated successfully, but these errors were encountered: