This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------- | |
-- Incorrect column encoding | |
-------------------- | |
SELECT database, schema || '.' || "table" AS "table", encoded, size | |
FROM svv_table_info | |
WHERE encoded='N' | |
ORDER BY 2; | |
SELECT trim(n.nspname || '.' || c.relname) AS "table",trim(a.attname) AS "column",format_type(a.atttypid, a.atttypmod) AS "type", |