Skip to content

Commit 44f281f

Browse files
committed
Added missing semicolon.
1 parent 6916535 commit 44f281f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/dialect/postgres.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ Postgres.prototype.visitForShare = function() {
10221022
};
10231023

10241024
Postgres.prototype.visitJoin = function(join) {
1025-
if (join.subType === 'LEFT LATERAL') return this.visitLeftJoinLateral(join)
1025+
if (join.subType === 'LEFT LATERAL') return this.visitLeftJoinLateral(join);
10261026
var result = [];
10271027
this._visitingJoin = true;
10281028
result = result.concat(this.visit(join.from));

0 commit comments

Comments
 (0)