22.12. Creating Empty MAP Data (map) #
This stored procedure must be executed inside a duckdb.query() call as Postgres Pro AXE does not support the MAP data type.
Required privileges: Postgres Pro AXE administrator only. For a full list of stored procedures and privileges, refer to Section 12.1.
Execute the following command on the Postgres Pro AXE server:
SELECT * FROM duckdb.query('SELECT map()') ON CONFLICT DO NOTHING;
Postgres Pro AXE returns empty MAP data.
Example 22.12. Executing the map Stored Procedure
SELECT * FROM duckdb.query('SELECT map()') ON CONFLICT DO NOTHING;
{}