fix: convert dataType to stirng

This commit is contained in:
Nybkox
2025-04-03 22:11:29 +02:00
parent a68a1334fc
commit 5af7615054
2 changed files with 36 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ function getColumnsInfo(columnNames, columnTypes) {
for (let i = columnNames.length - 1; i >= 0; i--) {
columns.push({
columnName: columnNames[i],
// dataType: columnTypes[i],
dataType: columnTypes[i].toString(),
});
}