Interface SourceEnvOrBuilder (0.44.0)

public interface SourceEnvOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getDefaultDatabase()

public abstract String getDefaultDatabase()

The default database name to fully qualify SQL objects when their database name is missing.

string default_database = 1;

Returns
TypeDescription
String

The defaultDatabase.

getDefaultDatabaseBytes()

public abstract ByteString getDefaultDatabaseBytes()

The default database name to fully qualify SQL objects when their database name is missing.

string default_database = 1;

Returns
TypeDescription
ByteString

The bytes for defaultDatabase.

getSchemaSearchPath(int index)

public abstract String getSchemaSearchPath(int index)

The schema search path. When SQL objects are missing schema name, translation engine will search through this list to find the value.

repeated string schema_search_path = 2;

Parameter
NameDescription
indexint

The index of the element to return.

Returns
TypeDescription
String

The schemaSearchPath at the given index.

getSchemaSearchPathBytes(int index)

public abstract ByteString getSchemaSearchPathBytes(int index)

The schema search path. When SQL objects are missing schema name, translation engine will search through this list to find the value.

repeated string schema_search_path = 2;

Parameter
NameDescription
indexint

The index of the value to return.

Returns
TypeDescription
ByteString

The bytes of the schemaSearchPath at the given index.

getSchemaSearchPathCount()

public abstract int getSchemaSearchPathCount()

The schema search path. When SQL objects are missing schema name, translation engine will search through this list to find the value.

repeated string schema_search_path = 2;

Returns
TypeDescription
int

The count of schemaSearchPath.

getSchemaSearchPathList()

public abstract List<String> getSchemaSearchPathList()

The schema search path. When SQL objects are missing schema name, translation engine will search through this list to find the value.

repeated string schema_search_path = 2;

Returns
TypeDescription
List<String>

A list containing the schemaSearchPath.