All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sqlancer.postgres.ast.PostgresExpression Maven / Gradle / Ivy

Go to download

SQLancer finds logic bugs in Database Management Systems through automatic testing

There is a newer version: 2.0.0
Show newest version
package sqlancer.postgres.ast;

import sqlancer.postgres.PostgresSchema.PostgresDataType;

public interface PostgresExpression {

    default PostgresDataType getExpressionType() {
        return null;
    }

    default PostgresConstant getExpectedValue() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy