Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.Set;

// all possible JDBC properties options currently supported by databend driver
final class ConnectionProperties {
public final class ConnectionProperties {
public static final ConnectionProperty<String> USER = new User();
public static final ConnectionProperty<String> PASSWORD = new Password();
public static final ConnectionProperty<Boolean> SSL = new Ssl();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import static java.util.Objects.requireNonNull;

class DatabendColumnInfo {
public class DatabendColumnInfo {
private static final int VARBINARY_MAX = 1024 * 1024 * 1024;
// current longest time zone is 32
private static final int TIME_ZONE_MAX = 40;
Expand Down Expand Up @@ -362,6 +362,4 @@ public DatabendColumnInfo build() {
catalogName);
}
}


}
Loading
Loading