list_ports_443

Column Type
host_identifier BLOB
name BLOB
address BLOB
family BLOB
fd BLOB
net_namespace BLOB
path BLOB
port BLOB
protocol BLOB
socket BLOB
query_uri TEXT

SQL DDL

CREATE VIEW list_ports_443 AS
SELECT 
  host_identifier,
  name,
  address,
  family,
  fd,
  net_namespace,
  path,
  port,
  protocol,
  socket,query_uri
FROM ur_transform_list_ports_443
;