﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
344	psDBDumpCols() incorrectly handles numeric data	jhoblitt	aaron.culliney@…	"This block of code from psDBDumpCols() is type casting 'column', which is a
'psVector', to be a numeric type.  Instead, it shold be added to 'table' as a
'PS_META_VEC'.

            column = psDBSelectColumnNum(dbh, tableName, field[i].name, pType, 0);
            if (pType == PS_META_S32) {
                psMetadataAddS32(table, 0, field[i].name, """", (psS32)atoll(column));
            } else if (pType == PS_META_F32) {
                psMetadataAddF32(table, 0, field[i].name, """", (psF32)atof(column));
            } else if (pType == PS_META_F64) {
                psMetadataAddF64(table, 0, field[i].name, """", (psF64)atof(column));
            }
            psFree(column);"	defect	closed	high		astro	0.5.0	normal	fixed		
