Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/main/java/com/microsoft/sqlserver/jdbc/Column.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
/**
* Column represents a database column definition (meta data) within a result set.
*/

//Testing
final class Column {
private TypeInfo typeInfo;
private CryptoMetadata cryptoMetadata;

private SqlVariant internalVariant;

final void setInternalVariant(SqlVariant type) {
Expand Down Expand Up @@ -471,3 +472,4 @@ int getValueLength() {
abstract class ColumnFilter {
abstract Object apply(Object value, JDBCType jdbcType) throws SQLServerException;
}

Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
* Allows configurable statement retry through the use of the 'retryExec' connection property. Each rule read in is
* converted to ConfigRetryRule objects, which are stored and referenced during statement retry.
*/
//Testing for sqlserver2025
public class ConfigurableRetryLogic {
private static final int INTERVAL_BETWEEN_READS_IN_MS = 30000;
private static final String DEFAULT_PROPS_FILE = "mssql-jdbc.properties";
Expand Down Expand Up @@ -405,3 +406,4 @@ boolean getReplaceFlag() {
return replaceFlag;
}
}

1 change: 1 addition & 0 deletions src/main/java/com/microsoft/sqlserver/jdbc/DDC.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
/**
* Utility class for all Data Dependent Conversions (DDC).
*/
//Testing the changes

final class DDC {

Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/microsoft/sqlserver/jdbc/Geography.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* Geography datatype represents data in a round-earth coordinate system. This class will stay in this current package
* for backwards compatibility.
*/
//Testing
public class Geography extends SQLServerSpatialDatatype {

Geography() {}
Expand Down
Loading