001/*
002// This software is subject to the terms of the Eclipse Public License v1.0
003// Agreement, available at the following URL:
004// http://www.eclipse.org/legal/epl-v10.html.
005// You must accept the terms of that agreement to use this software.
006//
007// Copyright (C) 2002-2005 Julian Hyde
008// Copyright (C) 2005-2005 Pentaho and others
009// All Rights Reserved.
010//
011// jhyde, Mar 21, 2002
012*/
013package mondrian.rolap.sql;
014
015/**
016 * Runs a SQL query.
017 *
018 * <p>Useful for testing purposes.
019 *
020 * @author jhyde
021 * @since 30 August, 2001
022 */
023public interface SqlQueryChecker {
024    void onGenerate(SqlQuery q);
025}
026
027// End SqlQueryChecker.java