Skip to content

Commit

Permalink
Merge pull request #1672 from schemacrawler/updates
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
sualeh authored Aug 25, 2024
2 parents 494bdf2 + 3d24fd0 commit 36e6df7
Show file tree
Hide file tree
Showing 16 changed files with 275 additions and 109 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
System Information
========================================================================

generated by SchemaCrawler 16.20.6
generated on 2023-11-26 15:52:35
generated by SchemaCrawler 16.22.2
generated on 2024-08-24 14:30:36
database version PostgreSQL 9.5.0
driver version PostgreSQL JDBC Driver 42.7.0
driver version PostgreSQL JDBC Driver 42.7.4



Expand Down Expand Up @@ -844,9 +844,9 @@ uses local files false

JDBC Driver Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
connection url jdbc:postgresql://localhost:63026/postgres
connection url jdbc:postgresql://localhost:57973/postgres
driver name PostgreSQL JDBC Driver
driver version 42.7.0
driver version 42.7.4
driver class name org.postgresql.Driver
is JDBC compliant false
supported JDBC version 4.2
Expand Down Expand Up @@ -882,7 +882,7 @@ ApplicationName [driver property]
assumeMinServerVersion [driver property]
Assume the server is at least that version
not required
value null
value 9.1

authenticationPluginClassName [driver property]
Name of class which implements AuthenticationPlugin
Expand All @@ -895,7 +895,7 @@ autosave [driver property]
value never

binaryTransfer [driver property]
Use binary format for sending and receiving data if possible
Enable binary transfer for supported built-in types if possible. Setting this to false disables any binary transfer unless it's individually activated for each type with `binaryTransferEnable`.
not required
value true

Expand All @@ -905,7 +905,7 @@ binaryTransferDisable [driver property]
value

binaryTransferEnable [driver property]
Comma separated list of types to enable binary transfer. Either OID numbers or names
Comma separated list of types to enable binary transfer. Either OID numbers or names.
not required
value

Expand All @@ -914,6 +914,11 @@ cancelSignalTimeout [driver property]
not required
value 10

channelBinding [driver property]
This option controls the client's use of channel binding.
not required; choices [disable, prefer, require]
value prefer

cleanupSavepoints [driver property]
Determine whether SAVEPOINTS used in AUTOSAVE will be released per query or not
not required; choices [false, true]
Expand Down Expand Up @@ -1039,6 +1044,11 @@ maxResultBuffer [driver property]
not required
value null

maxSendBufferSize [driver property]
Maximum amount of bytes buffered before sending to the backend
not required
value 8192

options [driver property]
Specify 'options' connection initialization parameter.
not required
Expand All @@ -1062,7 +1072,7 @@ PGHOST [driver property]
PGPORT [driver property]
Port of the PostgreSQL server (may be specified directly in the JDBC URL)
not required
value 63026
value 57973

preferQueryMode [driver property]
Specifies which mode is used to execute queries to database: simple means ('Q' execute, no parse, no bind, text mode only), extended means always use bind/execute messages, extendedForPrepared means extended for prepared statements only, extendedCacheEverything means use extended protocol and try cache every statement (including Statement.execute(String sql)) in a query cache.
Expand Down Expand Up @@ -1179,6 +1189,18 @@ sslmode [driver property]
not required; choices [allow, disable, prefer, require, verify-ca, verify-full]
value null

sslNegotiation [driver property]
This option controls whether the driver will perform its protocol
negotiation to request encryption from the server or will just
directly make a standard SSL connection. Traditional PostgreSQL
protocol negotiation is the default and the most flexible with
different server configurations. If the server is known to support
direct SSL connections then the latter requires one
fewer round trip reducing connection latency and also allows the use
of protocol agnostic SSL network tools.
not required; choices [direct, postgres]
value postgres

sslpassword [driver property]
The password for the client's ssl key (ignored if sslpasswordcallback is set)
not required
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
System Information
========================================================================

generated by SchemaCrawler 16.20.6
generated on 2023-11-26 15:53:43
generated by SchemaCrawler 16.22.2
generated on 2024-08-24 14:57:05
database version PostgreSQL 9.5.0
driver version PostgreSQL JDBC Driver 42.7.0
driver version PostgreSQL JDBC Driver 42.7.4



Expand Down Expand Up @@ -845,9 +845,9 @@ uses local files false

JDBC Driver Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
connection url jdbc:postgresql://localhost:63432/postgres
connection url jdbc:postgresql://localhost:59254/postgres
driver name PostgreSQL JDBC Driver
driver version 42.7.0
driver version 42.7.4
driver class name org.postgresql.Driver
is JDBC compliant false
supported JDBC version 4.2
Expand Down Expand Up @@ -883,7 +883,7 @@ ApplicationName [driver property]
assumeMinServerVersion [driver property]
Assume the server is at least that version
not required
value null
value 9.1

authenticationPluginClassName [driver property]
Name of class which implements AuthenticationPlugin
Expand All @@ -896,7 +896,7 @@ autosave [driver property]
value never

binaryTransfer [driver property]
Use binary format for sending and receiving data if possible
Enable binary transfer for supported built-in types if possible. Setting this to false disables any binary transfer unless it's individually activated for each type with `binaryTransferEnable`.
not required
value true

Expand All @@ -906,7 +906,7 @@ binaryTransferDisable [driver property]
value

binaryTransferEnable [driver property]
Comma separated list of types to enable binary transfer. Either OID numbers or names
Comma separated list of types to enable binary transfer. Either OID numbers or names.
not required
value

Expand All @@ -915,6 +915,11 @@ cancelSignalTimeout [driver property]
not required
value 10

channelBinding [driver property]
This option controls the client's use of channel binding.
not required; choices [disable, prefer, require]
value prefer

cleanupSavepoints [driver property]
Determine whether SAVEPOINTS used in AUTOSAVE will be released per query or not
not required; choices [false, true]
Expand Down Expand Up @@ -1040,6 +1045,11 @@ maxResultBuffer [driver property]
not required
value null

maxSendBufferSize [driver property]
Maximum amount of bytes buffered before sending to the backend
not required
value 8192

options [driver property]
Specify 'options' connection initialization parameter.
not required
Expand All @@ -1063,7 +1073,7 @@ PGHOST [driver property]
PGPORT [driver property]
Port of the PostgreSQL server (may be specified directly in the JDBC URL)
not required
value 63432
value 59254

preferQueryMode [driver property]
Specifies which mode is used to execute queries to database: simple means ('Q' execute, no parse, no bind, text mode only), extended means always use bind/execute messages, extendedForPrepared means extended for prepared statements only, extendedCacheEverything means use extended protocol and try cache every statement (including Statement.execute(String sql)) in a query cache.
Expand Down Expand Up @@ -1180,6 +1190,18 @@ sslmode [driver property]
not required; choices [allow, disable, prefer, require, verify-ca, verify-full]
value null

sslNegotiation [driver property]
This option controls whether the driver will perform its protocol
negotiation to request encryption from the server or will just
directly make a standard SSL connection. Traditional PostgreSQL
protocol negotiation is the default and the most flexible with
different server configurations. If the server is known to support
direct SSL connections then the latter requires one
fewer round trip reducing connection latency and also allows the use
of protocol agnostic SSL network tools.
not required; choices [direct, postgres]
value postgres

sslpassword [driver property]
The password for the client's ssl key (ignored if sslpasswordcallback is set)
not required
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
System Information
========================================================================

generated by SchemaCrawler 16.20.8
generated on 2024-01-09 22:11:55
generated by SchemaCrawler 16.22.2
generated on 2024-08-24 14:30:58
database version PostgreSQL 15.4 (Debian 15.4-2.pgdg120+1)
driver version PostgreSQL JDBC Driver 42.7.1
driver version PostgreSQL JDBC Driver 42.7.4



Expand Down Expand Up @@ -3486,9 +3486,9 @@ uses local files false

JDBC Driver Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
connection url jdbc:postgresql://localhost:53899/test?loggerLevel=OFF
connection url jdbc:postgresql://localhost:58083/test?loggerLevel=OFF
driver name PostgreSQL JDBC Driver
driver version 42.7.1
driver version 42.7.4
driver class name org.postgresql.Driver
is JDBC compliant false
supported JDBC version 4.2
Expand Down Expand Up @@ -3524,7 +3524,7 @@ ApplicationName [driver property]
assumeMinServerVersion [driver property]
Assume the server is at least that version
not required
value null
value 9.1

authenticationPluginClassName [driver property]
Name of class which implements AuthenticationPlugin
Expand All @@ -3537,7 +3537,7 @@ autosave [driver property]
value never

binaryTransfer [driver property]
Use binary format for sending and receiving data if possible
Enable binary transfer for supported built-in types if possible. Setting this to false disables any binary transfer unless it's individually activated for each type with `binaryTransferEnable`.
not required
value true

Expand All @@ -3547,7 +3547,7 @@ binaryTransferDisable [driver property]
value

binaryTransferEnable [driver property]
Comma separated list of types to enable binary transfer. Either OID numbers or names
Comma separated list of types to enable binary transfer. Either OID numbers or names.
not required
value

Expand All @@ -3556,6 +3556,11 @@ cancelSignalTimeout [driver property]
not required
value 10

channelBinding [driver property]
This option controls the client's use of channel binding.
not required; choices [disable, prefer, require]
value prefer

cleanupSavepoints [driver property]
Determine whether SAVEPOINTS used in AUTOSAVE will be released per query or not
not required; choices [false, true]
Expand Down Expand Up @@ -3681,6 +3686,11 @@ maxResultBuffer [driver property]
not required
value null

maxSendBufferSize [driver property]
Maximum amount of bytes buffered before sending to the backend
not required
value 8192

options [driver property]
Specify 'options' connection initialization parameter.
not required
Expand All @@ -3704,7 +3714,7 @@ PGHOST [driver property]
PGPORT [driver property]
Port of the PostgreSQL server (may be specified directly in the JDBC URL)
not required
value 53899
value 58083

preferQueryMode [driver property]
Specifies which mode is used to execute queries to database: simple means ('Q' execute, no parse, no bind, text mode only), extended means always use bind/execute messages, extendedForPrepared means extended for prepared statements only, extendedCacheEverything means use extended protocol and try cache every statement (including Statement.execute(String sql)) in a query cache.
Expand Down Expand Up @@ -3821,6 +3831,18 @@ sslmode [driver property]
not required; choices [allow, disable, prefer, require, verify-ca, verify-full]
value null

sslNegotiation [driver property]
This option controls whether the driver will perform its protocol
negotiation to request encryption from the server or will just
directly make a standard SSL connection. Traditional PostgreSQL
protocol negotiation is the default and the most flexible with
different server configurations. If the server is known to support
direct SSL connections then the latter requires one
fewer round trip reducing connection latency and also allows the use
of protocol agnostic SSL network tools.
not required; choices [direct, postgres]
value postgres

sslpassword [driver property]
The password for the client's ssl key (ignored if sslpasswordcallback is set)
not required
Expand Down
Loading

0 comments on commit 36e6df7

Please sign in to comment.