Merge pull request #544 from DHP86/decode-type-x

Add type 'x' in Field::decode.
This commit is contained in:
Emiel Bruijntjes 2025-06-30 15:26:09 +02:00 committed by GitHub
commit 839f74f2e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ std::unique_ptr<Field> Field::decode(InBuffer &frame)
case 'T': return std::unique_ptr<Field>(new Timestamp(frame));
case 'F': return std::unique_ptr<Field>(new Table(frame));
case 'V': return std::unique_ptr<Field>(new VoidField(frame));
case 'x': return std::unique_ptr<Field>(new LongString(frame));
default: return nullptr;
}
}