Class SqlTestQueryOutputDescription


  • public class SqlTestQueryOutputDescription
    extends Object
    A description of the output expected from a test query.
    • Field Detail

      • columnTypes

        public @Nullable String columnTypes
        Encoded types of columns expected in result.
      • hash

        public @Nullable String hash
        MD5 checksum of the canonicalized query output.
    • Constructor Detail

      • SqlTestQueryOutputDescription

        public SqlTestQueryOutputDescription()
        Create a description of the output of a query.
    • Method Detail

      • getQueryResults

        public @Nullable List<String> getQueryResults()
        Returns:
        The list of results produced by the query if they appear in the test file. Some query outputs are instead described through checksums.
      • getValueCount

        public int getValueCount()
        Returns:
        The number of values produced by the query.
      • clearResults

        public void clearResults()
        Initialize the results to empty.
      • addResultLine

        public void addResultLine​(String line)
        Add one more line to the list of expected results.
      • setHash

        public void setHash​(String hash)
        Set the MD5 checksum expected from the canonicalized query result.
      • setValueCount

        public void setValueCount​(int values)
        Set the number of values expected to be produced by the query.
      • getExpectedOutputSize

        public int getExpectedOutputSize()
        Returns:
        The expected number of rows produced by the query. Return -1 if the output size is not known.