mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(Postgres Node): Expressions in query parameters for Postgres executeQuery operation (#10217)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user