Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
12 additions
and 8 deletions.
- +3 −2 pgjdbc/src/main/checkstyle/checks.xml
- +0 −1 pgjdbc/src/main/java/org/postgresql/PGConnection.java
- +1 −0 pgjdbc/src/main/java/org/postgresql/core/PGStream.java
- +1 −0 pgjdbc/src/main/java/org/postgresql/core/v3/ConnectionFactoryImpl.java
- +0 −1 pgjdbc/src/main/java/org/postgresql/jdbc/PgDatabaseMetaData.java
- +1 −0 pgjdbc/src/main/java/org/postgresql/ssl/DefaultJavaSSLFactory.java
- +1 −0 pgjdbc/src/main/java/org/postgresql/ssl/LibPQFactory.java
- +1 −0 pgjdbc/src/main/java/org/postgresql/ssl/MakeSSL.java
- +1 −0 pgjdbc/src/main/java/org/postgresql/ssl/PGjdbcHostnameVerifier.java
- +1 −0 pgjdbc/src/main/java/org/postgresql/ssl/jdbc4/LibPQFactory.java
- +0 −1 pgjdbc/src/main/java/org/postgresql/util/WriterHandler.java
- +0 −1 pgjdbc/src/test/java/org/postgresql/test/jdbc2/ParameterStatusTest.java
- +1 −0 pgjdbc/src/test/java/org/postgresql/test/jdbc2/optional/BaseDataSourceFailoverUrlsTest.java
- +0 −1 pgjdbc/src/test/java/org/postgresql/test/jdbc4/JsonbTest.java
- +0 −1 pgjdbc/src/test/java/org/postgresql/test/jdbc4/XmlTest.java
- +1 −0 pgjdbc/src/test/java/org/postgresql/test/ssl/SslTest.java
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -16,7 +16,6 @@ | ||
import java.sql.Array; | ||
import java.sql.SQLException; | ||
import java.sql.Statement; | ||
import java.util.Map; | ||
|
||
/** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -23,6 +23,7 @@ | ||
import java.net.Socket; | ||
import java.net.SocketTimeoutException; | ||
import java.sql.SQLException; | ||
|
||
import javax.net.SocketFactory; | ||
|
||
/** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -43,6 +43,7 @@ | ||
import java.util.logging.Level; | ||
import java.util.logging.LogRecord; | ||
import java.util.logging.Logger; | ||
|
||
import javax.net.SocketFactory; | ||
|
||
/** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -26,7 +26,6 @@ | ||
import java.sql.Types; | ||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.Collections; | ||
import java.util.Comparator; | ||
import java.util.HashMap; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -6,6 +6,7 @@ | ||
package org.postgresql.ssl; | ||
|
||
import java.util.Properties; | ||
|
||
import javax.net.ssl.SSLSocketFactory; | ||
|
||
/** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -11,6 +11,7 @@ | ||
|
||
import java.net.IDN; | ||
import java.util.Properties; | ||
|
||
import javax.net.ssl.HostnameVerifier; | ||
import javax.net.ssl.SSLSession; | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -20,7 +20,6 @@ | ||
package org.postgresql.util; | ||
|
||
import java.io.Writer; | ||
import java.util.logging.ErrorManager; | ||
import java.util.logging.Formatter; | ||
import java.util.logging.Handler; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -10,7 +10,6 @@ | ||
import org.postgresql.test.TestUtil; | ||
|
||
import org.hamcrest.core.StringStartsWith; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -12,6 +12,7 @@ | ||
import org.junit.Test; | ||
|
||
import java.io.IOException; | ||
|
||
import javax.naming.NamingException; | ||
|
||
/** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -9,7 +9,6 @@ | ||
import static org.junit.Assert.assertTrue; | ||
|
||
import org.postgresql.core.ServerVersion; | ||
import org.postgresql.test.TestUtil; | ||
import org.postgresql.test.jdbc2.BaseTest4; | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -15,7 +15,6 @@ | ||
import org.postgresql.test.jdbc2.BaseTest4; | ||
|
||
import org.junit.Test; | ||
import org.w3c.dom.Node; | ||
|
||
import java.io.IOException; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -27,6 +27,7 @@ | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Properties; | ||
|
||
import javax.net.ssl.SSLHandshakeException; | ||
|
||
@RunWith(Parameterized.class) | ||