1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

fix(PostgreSQL): error opening setting tab for some stored routines

This commit is contained in:
2021-07-03 11:39:57 +02:00
parent 75bbd5f66e
commit d96907ca2d
2 changed files with 2 additions and 2 deletions

View File

@ -624,7 +624,7 @@ export class PostgreSQLClient extends AntaresCore {
const parameters = results.rows.map(row => {
return {
name: row.parameter_name,
type: row.data_type.toUpperCase(),
type: row.data_type ? row.data_type.toUpperCase() : '',
length: '',
context: row.parameter_mode
};