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

com.yahoo.elide.datastores.aggregation.query.TableSQLMaker Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2022, Yahoo Inc.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */

package com.yahoo.elide.datastores.aggregation.query;

@FunctionalInterface
public interface TableSQLMaker {
    /**
     * Constructs dynamic SQL given a specific client query.
     * @param clientQuery the client query.
     * @return A templated SQL query
     */
    String make(Query clientQuery);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy