Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

writeFeatures: immutable -> volatile #1383

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions xyz-util/src/main/resources/sql/feature_writer.sql
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ $BODY$
else
throw error;
}
$BODY$ LANGUAGE plv8 IMMUTABLE;
$BODY$ LANGUAGE plv8 VOLATILE;

/**
* @public
Expand All @@ -86,4 +86,4 @@ CREATE OR REPLACE FUNCTION write_feature(input_feature TEXT, author TEXT, on_exi
throw new Error("Parameter input_feature must not be null.");

return writeFeatures(`[${input_feature}]`, author, on_exists, on_not_exists, on_version_conflict, on_merge_conflict, is_partial, version, return_result);
$BODY$ LANGUAGE plv8 IMMUTABLE;
$BODY$ LANGUAGE plv8 VOLATILE;
Loading