You can execute the following statement to find SQL statements that executed full table scans in a tenant:
obclient> SELECT query_sql
FROM oceanbase.GV$OB_SQL_AUDIT
WHERE table_scan = 1 AND tenant_id = 1001
GROUP BY sql_id;
+-------------------------------+
| query_sql |
+-------------------------------+
| SHOW VARIABLES LIKE 'version' |
+-------------------------------+