1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-05 00:28:52 +02:00

Use specific integer types in postgres/client and db unit tests.

This will work better once we are able to transmit the results with stronger typing.

Also remove int2 which was not being used.
This commit is contained in:
David Steele
2022-04-18 12:14:22 -04:00
parent 9751ddc4f8
commit cfd6c7ceb4
4 changed files with 13 additions and 12 deletions

View File

@ -294,7 +294,6 @@ pgClientQuery(PgClient *this, const String *query)
// Integer types
case 20: // int8
case 21: // int2
case 23: // int4
case 26: // oid
varLstAdd(resultRow, varNewInt64(cvtZToInt64(value)));