Files
doc-exports/docs/dws/dev/dws_04_0785.html
luhuayi 177cd61a57 DWS DEVG 910.211 version
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: luhuayi <luhuayi@huawei.com>
Co-committed-by: luhuayi <luhuayi@huawei.com>
2025-05-05 07:44:03 +00:00

5.4 KiB

PG_TDE_INFO

PG_TDE_INFO displays the encryption information about the current cluster.

Table 1 PG_TDE_INFO columns

Column

Type

Description

is_encrypt

Text

Whether the cluster is an encryption cluster

  • f: Non-encryption cluster
  • t: Encryption cluster

g_tde_algo

Text

Encryption algorithm

  • AES-CTR-128

remain

Text

Reserved columns

Examples

Check whether the current cluster is encrypted, and check the encryption algorithm (if any) used by the current cluster.

1
2
3
4
5
SELECT * FROM PG_TDE_INFO;
 is_encrypt | g_tde_algo  | remain
------------+-------------+--------
 f          | AES-CTR-128 | remain
(1 row)