fix(Postgres Node): Expressions in query parameters for Postgres executeQuery operation (#10217)

This commit is contained in:
Shireen Missi
2024-07-31 08:39:37 +01:00
committed by GitHub
parent 7e643589c6
commit 519fc4d753
3 changed files with 34 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ export class Postgres extends VersionedNodeType {
name: 'postgres',
icon: 'file:postgres.svg',
group: ['input'],
defaultVersion: 2.4,
defaultVersion: 2.5,
description: 'Get, add and update data in Postgres',
parameterPane: 'wide',
};
@@ -23,6 +23,7 @@ export class Postgres extends VersionedNodeType {
2.2: new PostgresV2(baseDescription),
2.3: new PostgresV2(baseDescription),
2.4: new PostgresV2(baseDescription),
2.5: new PostgresV2(baseDescription),
};
super(nodeVersions, baseDescription);