types / mysql2

Typings for https://github.com/sidorares/node-mysql2
ISC License
41 stars 23 forks source link

Malformed FieldPacket #51

Closed mgummelt closed 3 years ago

mgummelt commented 3 years ago

When fetching FieldPackets from a query, I'm observing that packet.type is undefined, in violation of its type: https://github.com/sidorares/node-mysql2/blob/master/typings/mysql/lib/protocol/packets/FieldPacket.d.ts#L18

Example code:

$ const [res, fields] = await conn.execute<RowDataPacket[]>(sql);
$ fields[0].type
undefined