utc_timestamp()
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
RAW SQL
INSERT INTO wp_gf_form(title, date_created) VALUES('Test', utc_timestamp())
SELECT utc_timestamp()
Expected Rewritten SQL
INSERT INTO wp_gf_form(title, date_created) VALUES('Test', CURRENT_TIMESTAMP AT TIME ZONE 'UTC') RETURNING *
SELECT CURRENT_TIMESTAMP AT TIME ZONE 'UTC'
Actual Rewritten SQL
INSERT INTO wp_gf_form(title, date_created) VALUES('Test', utc_timestamp()) RETURNING *
SELECT utc_timestamp()
WP Version: 6.6.2 PG4WP Version: 3.3.1
Error:
RAW SQL
Expected Rewritten SQL
Actual Rewritten SQL