Fix to show float4/8 correctly in sqltoarray

This commit is contained in:
Miles Lott 2001-08-25 09:16:00 +00:00
parent 84401ad8b3
commit 87f5ac0200

View File

@ -141,6 +141,8 @@
$sTranslated = "'type' => 'decimal', 'precision' => $iPrecision, 'scale' => $iScale";
break;
case "float":
case "float4":
case "float8":
case "double":
$sTranslated = "'type' => 'float', 'precision' => $iPrecision";
break;