We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e5316a6 + 9c1c2d2 commit fd3ecefCopy full SHA for fd3ecef
1 file changed
lib/dialect/postgres.js
@@ -463,10 +463,10 @@ Postgres.prototype.visitColumn = function(columnNode) {
463
}
464
if(!this._visitedInsert && !this._visitingUpdateTargetColumn && !this._visitingCreate && !this._visitingAlter) {
465
if(table.alias) {
466
- txt = this.quote(table.alias);
+ txt += this.quote(table.alias);
467
} else {
468
if(table.getSchema()) {
469
- txt = this.quote(table.getSchema());
+ txt += this.quote(table.getSchema());
470
txt += '.';
471
472
txt += this.quote(table.getName());
0 commit comments