You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
feat(spanner): add jdbc support for external hosts (#3536)
* feat(spanner): add jdbc support for external hosts
* feat(spanner): added default port value and unit tests
* feat(spanner): fixed redundant class name typo
"The specified URI is not a valid Cloud Spanner connection URI. Please specify a URI in the format \"cloudspanner:[//host[:port]]/projects/project-id[/instances/instance-id[/databases/database-name]][\\?property-name=property-value[;property-name=property-value]*]?\"");
712
+
if (!isValidExternalHostUri(uri)) {
713
+
Preconditions.checkArgument(
714
+
isValidUri(uri),
715
+
"The specified URI is not a valid Cloud Spanner connection URI. Please specify a URI in the format \"cloudspanner:[//host[:port]]/projects/project-id[/instances/instance-id[/databases/database-name]][\\?property-name=property-value[;property-name=property-value]*]?\"");
0 commit comments