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

fix: issue managing function/routine parameters

This commit is contained in:
2021-02-24 12:46:31 +01:00
parent c8545a250b
commit 76d92cd106
11 changed files with 88 additions and 44 deletions

View File

@@ -561,7 +561,7 @@ export class MySQLClient extends AntaresCore {
return {
name: param[1] ? param[1].replaceAll('`', '') : '',
type: type[0],
type: type[0].replaceAll('\n', ''),
length: +type[1],
context: param[0] ? param[0].replace('\n', '') : ''
};