001 /* 002 // $Id: //open/mondrian/src/main/mondrian/rolap/sql/SqlQueryChecker.java#2 $ 003 // This software is subject to the terms of the Common Public License 004 // Agreement, available at the following URL: 005 // http://www.opensource.org/licenses/cpl.html. 006 // Copyright (C) 2002-2002 Kana Software, Inc. 007 // Copyright (C) 2002-2005 Julian Hyde and others 008 // All Rights Reserved. 009 // You must accept the terms of that agreement to use this software. 010 // 011 // jhyde, Mar 21, 2002 012 */ 013 package 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 * @version $Id: //open/mondrian/src/main/mondrian/rolap/sql/SqlQueryChecker.java#2 $ 023 */ 024 public interface SqlQueryChecker { 025 void onGenerate(SqlQuery q); 026 } 027 028 // End SqlQueryChecker.java