microsoft / pgtoolsservice

PostgreSQL Tools Service that provides PostgreSQL Server data management capabilities.
Other
83 stars 36 forks source link

Add proacl and macaddr8[] data types #488

Open DaeunYim opened 11 months ago

DaeunYim commented 11 months ago

Fixed issue with these two tables by adding aclitem and macaddr8[] data types

SELECT * FROM pg_catalog.pg_proc

-- Create the table CREATE TABLE network_data_extensive ( id SERIAL PRIMARY KEY, ip_address inet, ip_address_array inet[], subnet cidr, subnet_array cidr[], mac_address_standard macaddr, mac_address_extended macaddr8, mac_address_standard_array macaddr[], mac_address_extended_array macaddr8[] );

Fixes https://github.com/microsoft/azuredatastudio-postgresql/issues/487 https://github.com/microsoft/azuredatastudio-postgresql/issues/449