Skip to content

Commit 3d1d530

Browse files
fix: pg query in mysql dialect (#1051)
1 parent e8b2445 commit 3d1d530

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws_advanced_python_wrapper/database_dialect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def default_port(self) -> int:
177177

178178
@property
179179
def host_alias_query(self) -> str:
180-
return "SELECT pg_catalog.CONCAT(@@hostname, ':', @@port)"
180+
return "SELECT CONCAT(@@hostname, ':', @@port)"
181181

182182
@property
183183
def server_version_query(self) -> str:

0 commit comments

Comments
 (0)