diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-03-13 14:37:34 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-03-13 14:37:34 +0100 |
commit | fe39ea1b035bdc70733a7c624628ee68bcf2d54a (patch) | |
tree | cdcd1a57fc0417a15f66f8d6364db9fc6089679b | |
parent | 74115f5fa3c2b8c58bed239d4765769c3c759804 (diff) | |
download | mariadb-git-fe39ea1b035bdc70733a7c624628ee68bcf2d54a.tar.gz |
- Make Tiny compatible with DBF tables.
modified:
storage/connect/filamdbf.cpp
-rw-r--r-- | storage/connect/filamdbf.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/connect/filamdbf.cpp b/storage/connect/filamdbf.cpp index 74329dc44de..8b3a31579eb 100644 --- a/storage/connect/filamdbf.cpp +++ b/storage/connect/filamdbf.cpp @@ -575,6 +575,7 @@ bool DBFFAM::AllocateBuffer(PGLOBAL g) switch ((c = *GetFormatType(cdp->GetType()))) { case 'S': // Short integer case 'L': // Large (big) integer + case 'T': // Tiny integer c = 'N'; // Numeric case 'N': // Numeric (integer) case 'F': // Float (double) |