fixed replicator for oracle

This commit is contained in:
Jan Prochazka
2025-04-23 15:54:02 +02:00
parent ebcf88070c
commit 5278861ccd
3 changed files with 5 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ export function isTypeNumeric(dataType) {
}
export function isTypeFloat(dataType) {
return dataType && /float|single|double/i.test(dataType);
return dataType && /float|single|double|number/i.test(dataType);
}
export function isTypeNumber(dataType) {