How does Neon compare to AWS RDS for PostgreSQL? Your questions, answered

Supported Postgres extensions

Neon supports the Postgres extensions shown in the following table. The supported version of the extension sometimes differs by Postgres version. A dash (-) indicates that an extension is not yet supported.

Need an extension we don't have? 📩 Request an extension

ExtensionPG14PG15PG16PG17Notes
address_standardizer3.3.33.3.33.3.33.5.0
address_standardizer_data_us3.3.33.3.33.3.33.5.0
autoinc (spi)1.01.01.01.0
bloom1.01.01.01.0
btree_gin1.31.31.31.3
btree_gist1.61.71.71.7
citext1.61.61.61.6
cube1.51.51.51.5
dblink1.21.21.21.2
dict_int1.01.01.01.0
earthdistance1.11.11.11.1
fuzzystrmatch1.11.11.11.2
h34.1.34.1.34.1.34.1.3Some components have been split out into the h3_postgis extension. Install both the h3 and h3_postgis extensions.
h3_postgis4.1.24.1.34.1.34.1.3Install with CREATE EXTENSION h3_postgis CASCADE; (requires postgis and postgis_raster)
hll2.182.182.182.18
hstore1.81.81.81.8
hypopg1.4.11.4.11.4.11.4.1
insert_username (spi)1.01.01.01.0
intagg1.11.11.11.1
intarray1.51.51.51.5
ip4r2.42.42.42.4
isn1.21.21.21.2
lo1.11.11.11.1
ltree1.21.21.21.3
moddatetime (spi)1.01.01.01.0
neon1.51.51.51.5
neon_utils1.01.01.01.0
pg_cron1.61.61.61.6To install pg_cron, it must first be enabled. See Enable the pg_cron extension for instructions. Please note that pg_cron jobs will only run when your compute is active. We therefore recommend only using pg_cron on computes that run 24/7 or where you have disabled scale to zero.
pg_graphql1.5.91.5.91.5.91.5.9
pg_hashids1.2.11.2.11.2.11.2.1
pg_hint_plan1.4.11.5.01.6.01.7.0
pg_ivm1.91.91.91.9
pg_jsonschema0.3.30.3.30.3.30.3.3
pg_mooncake-0.1.10.1.10.1.1This extension is experimental. Using a separate, dedicated Neon project is recommended. Run SET neon.allow_unstable_extensions='true'; before installing. See the YouTube demo and the pg_mooncake documentation.
pg_partman5.1.05.1.05.1.05.1.0
pg_prewarm1.21.21.21.2
pg_repack1.5.21.5.21.5.21.5.2Available only on paid Neon plans. To install pg_repack, it must first be enabled by Neon Support. Open a support ticket with your endpoint ID and database name to request it. After it's enabled, you'll need to restart your compute before running CREATE EXTENSION pg_repack; To use pg_repack, you will need to install the pg_repack CLI.
pg_roaringbitmap0.50.50.50.5Install with CREATE EXTENSION roaringbitmap;
pg_session_jwt0.1.20.1.20.1.20.1.2This extension is used by Neon RLS.
pg_stat_statements1.91.101.101.11
pg_tiktoken0.0.10.0.10.0.10.0.1The neon_superuser role has EXECUTE privilege on the pg_stat_statements_reset() function.
pg_trgm1.61.61.61.6
pg_uuidv71.61.61.61.6
pgcrypto1.31.31.31.3
pgjwt0.2.00.2.00.2.00.2.0
pgrag0.0.00.0.00.0.00.0.0This extension is experimental. Using a separate, dedicated Neon project is recommended. Run SET neon.allow_unstable_extensions='true'; before installing.
pgrouting3.4.23.4.23.4.23.6.2The PostGIS extension must be installed first.
pgrowlocks1.21.21.21.2
pgstattuple1.51.51.51.5
pgtap1.3.31.3.31.3.31.3.3
pgvector0.8.00.8.00.8.00.8.0Install with CREATE EXTENSION vector;
pg_search---0.15.8Install with CREATE EXTENSION pg_search; on Postgres 17.
pgx_ulid0.1.50.1.50.1.50.2.0Install with CREATE EXTENSION ulid; on Postgres 14, 15, 16. Install with CREATE EXTENSION pgx_ulid; on Postgres 17.
plcoffee3.1.53.1.53.1.8-
plls3.1.53.1.53.1.8-
plpgsql1.01.01.01.0Pre-installed with Postgres.
plpgsql_check2.7.112.7.112.7.112.7.11
plv83.1.103.1.103.1.103.2.3
postgis3.3.33.3.33.3.33.5.0
postgis_raster3.3.33.3.33.3.33.5.0
postgis_sfcgal1.3.81.3.81.3.83.5.0
postgis_tiger_geocoder3.3.33.3.33.3.33.5.0Cannot be installed using the Neon SQL Editor. Use your psql user credentials to install this extension.
postgis_topology3.3.33.3.33.3.33.5.0
postgres_fdw1.11.11.11.1
prefix1.2.01.2.01.2.01.2.0
rdkit4.3.04.3.04.3.04.6.0
refint (spi)1.01.01.01.0
rum1.31.31.31.3.1
seg1.41.41.41.4
semver0.32.10.32.10.32.10.40.0
tablefunc1.01.01.01.0
tcn1.01.01.01.0
timescaledb2.10.12.10.12.13.02.17.1Only Apache-2 licensed features are supported. Compression is not supported.
tsm_system_rows1.01.01.01.0
tsm_system_time1.01.01.01.0
unaccent1.11.11.11.1
unit7777
uuid-ossp1.11.11.11.1Double-quote the extension name when installing: CREATE EXTENSION "uuid-ossp"
wal2json2.62.62.62.6CREATE EXTENSION not required. This decoder plugin is available by default but requires enabling logical replication in Neon.
xml21.11.11.11.1

Install an extension

Unless otherwise noted, supported extensions can be installed using CREATE EXTENSION syntax.

CREATE EXTENSION <extension_name>;

You can install extensions from the Neon SQL Editor or from a client such as psql that permits running SQL queries. For information about using the Neon SQL Editor, see Query with Neon's SQL Editor. For information about using the psql client with Neon, see Connect with psql.

Update an extension version

Neon updates supported extensions as new versions become available. Version updates are communicated in the Changelog. To check the current version of extensions you have installed, query the pg_extension table:

SELECT * FROM pg_extension;

You can update an extension to the latest version using ALTER EXTENSION <extension_name> UPDATE TO <new_version> syntax. For example:

ALTER EXTENSION vector UPDATE TO '0.7.0';

important

When Neon releases a new extension or new extension version, a compute restart is required to make the new extension or extension version available for installation or update. A compute restart may occur on its own due to Neon's default scale to zero behavior. However, if your compute never restarts because you disabled scale to zero or because your compute is constantly active, you may need to force a restart. To force a restart, you can issue Restart endpoint API call. Please be aware that restarting a compute temporarily interrupts any connections currently using the compute.

Extensions installations and updates are automatically applied to any read replica computes on the same branch as your primary compute the next time the read replica compute restarts.

Request an extension

Request a new extension

Looking for a specific extension in Neon? Suggest one using this form.

We appreciate all extension requests. While we can’t guarantee support, we regularly review requests and prioritize them based on factors like user demand, popularity in the Postgres ecosystem, and Neon’s product direction. Some extensions are simple to add, while others require significant integration work.

Custom-built extensions

For Enterprise plan customers, Neon supports custom-built Postgres extensions for exclusive use with your Neon account. If you developed your own Postgres extension and want to use it with Neon, please reach out to us as described above. Please include the following information in your request:

  • A repository link or archive file containing the source code for your extension
  • A description of what the extension does, instructions for compiling it, and any prerequisites
  • Whether an NDA or licensing agreement is necessary for Neon to provide support for your extension

Please keep in mind that certain restrictions may apply with respect to Postgres privileges and local file system access. Additionally, Neon features such as Autoscaling and Scale to Zero may limit the types of extensions we can support.

Depending on the nature of your extension, Neon may also request a liability waiver.

Custom-built extensions are not yet supported for Neon projects provisioned on Azure.

Extension support

Neon supports a large number of Postgres extensions. When we say an extension is “supported,” we mean that it's available for you to enable and use in your project.

We don’t actively maintain third-party extension code. If you run into an issue or discover a bug with an extension, we recommend reporting it to the extension’s upstream maintainers. If a fix is released, we’re happy to update to the latest version of the extension.

For the extension versions that Neon supports, refer to the Supported extensions table above. You can request support for a new version of an extension by opening a support ticket or by reaching out to us on Discord.

Experimental extensions

Neon occasionally adds support for extensions that are in early stages of development or undergoing validation. These extensions require an explicit opt-in and are not recommended for production use.

To run these extensions, you'll be required to configure the following session variable before installing the extension:

SET neon.allow_unstable_extensions = 'true';

note

"Unstable" doesn’t mean the extension is buggy. It means that we have not yet met service level expectations for the extension, often related to testing and Neon integration requirements.

Things to know about experimental extensions:

  • Use with caution: We recommend trying experimental extensions in a separate project—not in the Neon project you use for production.
  • Limited support: Experimental extensions aren’t covered by Neon support. If an extension causes your database to fail or prevents it from starting, we’ll help you disable it if possible—but we can’t guarantee more than that.
  • No guarantees: An experimental extension might never become fully supported. It could require significant work from Neon or the extension’s maintainers before it’s ready for general use.
  • Subject to change or removal: Experimental extensions may be updated at any time, including breaking changes. They can also be removed—especially if they pose security or operational risks.

If you're experimenting with an extension and run into trouble, we recommend checking with the extension’s maintainers or community for support.

Extension notes

  • Neon supports the uuid-ossp extension for generating UUIDs instead of the uuid extension.
  • The sslinfo extension is not supported. Neon handles connections via a proxy that checks SSL.
  • The file_fdw extension is not supported. Files would not remain accessible when Neon scales to zero.

Need help?

Join our Discord Server to ask questions or see what others are doing with Neon. Users on paid plans can open a support ticket from the console. For more details, see Getting Support.

Last updated on

Was this page helpful?