mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 13:46:00 +00:00
typo + bigint converted to numbers
This commit is contained in:
@@ -178,7 +178,7 @@ const driver = {
|
||||
|
||||
return {
|
||||
version,
|
||||
versionText: `DuchDB ${version}`,
|
||||
versionText: `DuckDB ${version}`,
|
||||
};
|
||||
},
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ function _normalizeValue(value) {
|
||||
}
|
||||
|
||||
if (typeof value === 'bigint') {
|
||||
return `${value}n`;
|
||||
return parseInt(value);
|
||||
}
|
||||
|
||||
if (Array.isArray(value)) {
|
||||
|
||||
Reference in New Issue
Block a user