aws / pg_tle

Framework for building trusted language extensions for PostgreSQL
Apache License 2.0
336 stars 31 forks source link

Update column name for pgtle functions #276

Closed Rajanpandey closed 6 months ago

Rajanpandey commented 6 months ago

Issue #, if available: None

Description of changes: Updated 03_managing_extensions.md to reflect the correct column names for pgtle.available_extensions() and pgtle.available_extension_versions().

As shown below, the column name is comment:

test=# SELECT * FROM pgtle.available_extensions();
    name     | default_version |              comment              
-------------+-----------------+-----------------------------------```

and

test=# SELECT * FROM pgtle.available_extension_versions();
    name     | version | superuser | trusted | relocatable | schema | requires |              comment              
-------------+---------+-----------+---------+-------------+--------+----------+-----------------------------------

But in the doc, it said description.

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

adamguo0 commented 6 months ago

Thanks for catching this!