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
Currently, DDL statements are generated with ';' character at the end of the statement for example:
CREATE OR REPLACEFUNCTIONset_current_tenant_id(VARCHAR(255)) RETURNS VOID AS $$
BEGIN
PERFORM set_config('posmulten.tenant_id', $1, false);
END
$$ LANGUAGE plpgsql
VOLATILE;
after setting this option the DDL instruction should look like the below example:
CREATE OR REPLACEFUNCTIONset_current_tenant_id(VARCHAR(255)) RETURNS VOID AS $$
BEGIN
PERFORM set_config('posmulten.tenant_id', $1, false);
END
$$ LANGUAGE plpgsql
VOLATILE
The text was updated successfully, but these errors were encountered:
Currently, DDL statements are generated with ';' character at the end of the statement for example:
after setting this option the DDL instruction should look like the below example:
The text was updated successfully, but these errors were encountered: