Interface SourceEnvOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    SourceEnv, SourceEnv.Builder

    public interface SourceEnvOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getDefaultDatabase()
      The default database name to fully qualify SQL objects when their database name is missing.
      com.google.protobuf.ByteString getDefaultDatabaseBytes()
      The default database name to fully qualify SQL objects when their database name is missing.
      String getSchemaSearchPath​(int index)
      The schema search path.
      com.google.protobuf.ByteString getSchemaSearchPathBytes​(int index)
      The schema search path.
      int getSchemaSearchPathCount()
      The schema search path.
      List<String> getSchemaSearchPathList()
      The schema search path.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getDefaultDatabase

        String getDefaultDatabase()
         The default database name to fully qualify SQL objects when their database
         name is missing.
         
        string default_database = 1;
        Returns:
        The defaultDatabase.
      • getDefaultDatabaseBytes

        com.google.protobuf.ByteString getDefaultDatabaseBytes()
         The default database name to fully qualify SQL objects when their database
         name is missing.
         
        string default_database = 1;
        Returns:
        The bytes for defaultDatabase.
      • getSchemaSearchPathList

        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:
        A list containing the schemaSearchPath.
      • getSchemaSearchPathCount

        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:
        The count of schemaSearchPath.
      • getSchemaSearchPath

        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;
        Parameters:
        index - The index of the element to return.
        Returns:
        The schemaSearchPath at the given index.
      • getSchemaSearchPathBytes

        com.google.protobuf.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;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the schemaSearchPath at the given index.