Commit fe39ea1b authored by Olivier Bertrand's avatar Olivier Bertrand

- Make Tiny compatible with DBF tables.

modified:
  storage/connect/filamdbf.cpp
parent 74115f5f
...@@ -575,6 +575,7 @@ bool DBFFAM::AllocateBuffer(PGLOBAL g) ...@@ -575,6 +575,7 @@ bool DBFFAM::AllocateBuffer(PGLOBAL g)
switch ((c = *GetFormatType(cdp->GetType()))) { switch ((c = *GetFormatType(cdp->GetType()))) {
case 'S': // Short integer case 'S': // Short integer
case 'L': // Large (big) integer case 'L': // Large (big) integer
case 'T': // Tiny integer
c = 'N'; // Numeric c = 'N'; // Numeric
case 'N': // Numeric (integer) case 'N': // Numeric (integer)
case 'F': // Float (double) case 'F': // Float (double)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment