Skip to content

Commit

Permalink
writeFeatures: IMMUTABLE -> VOLATILE (#1383)
Browse files Browse the repository at this point in the history
Signed-off-by: qGYdXbY2 <[email protected]>
  • Loading branch information
qGYdXbY2 authored Oct 21, 2024
1 parent f6974a4 commit a0fbf3a
Showing 1 changed file with 2 additions and 2 deletions.
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;

0 comments on commit a0fbf3a

Please sign in to comment.