only postgres15

apply 1.hcl
cmpshow t 1.sql
cmphcl 1.inspect.hcl

-- 1.hcl --
table "t" {
  schema = schema.script_column_internal
  column "oid" {
    null = false
    type = oid
  }
  column "name" {
    null = false
    type = name
  }
  column "regproc" {
    null = false
    type = regproc
  }
}

schema "script_column_internal" {}

-- 1.sql --
          Table "script_column_internal.t"
 Column  |  Type   | Collation | Nullable | Default
---------+---------+-----------+----------+---------
 oid     | oid     |           | not null |
 name    | name    |           | not null |
 regproc | regproc |           | not null |

-- 1.inspect.hcl --
table "t" {
  schema = schema.script_column_internal
  column "oid" {
    null = false
    type = oid
  }
  column "name" {
    null = false
    type = name
  }
  column "regproc" {
    null = false
    type = regproc
  }
}
schema "script_column_internal" {
}

