| 273 | |
| 274 | |
| 275 | class ColumnDescription(_ZeroPadding): |
| 276 | name = "Column Description" |
| 277 | fields_desc = [ |
| 278 | StrNullField("col", None), |
| 279 | SignedIntField("tableoid", 0), |
| 280 | SignedShortField("colno", 0), |
| 281 | SignedIntField("typeoid", 0), |
| 282 | SignedShortField("typelen", 0), |
| 283 | SignedIntField("typemod", 0), |
| 284 | SignedShortField("format", 0), |
| 285 | ] |
| 286 | |
| 287 | |
| 288 | class RowDescription(_ZeroPadding): |
nothing calls this directly
no test coverage detected
searching dependent graphs…