There are two methods to address this behavior.
1). Manually modify the information link's default SQL query, by replacing the "@" (the "at sign") with "." (a period), so that the information link's modified SQL query, for the example shown above, looks like this:
==
SELECT *
FROM
"VeloDB"."processed"."emp" n1
WHERE
<conditions>
==
OR
2). Use a later version of the PostgreSQL JDBC driver, such as version 9.x. PostgreSQL JDBC drivers can be downloaded from the following URL:
https://jdbc.postgresql.org/download.html