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:
@ -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
|
||||
};
|
||||
|
Reference in New Issue
Block a user