61c284
--- a/src/test/org/apache/velocity/test/sql/HsqlDataSource.java	2012-02-15 19:49:20.202936454 -0500
61c284
+++ b/src/test/org/apache/velocity/test/sql/HsqlDataSource.java	2012-02-15 19:52:35.062574871 -0500
61c284
@@ -23,6 +23,7 @@
61c284
 import java.sql.Connection;
61c284
 import java.sql.DriverManager;
61c284
 import java.sql.SQLException;
61c284
+import java.sql.SQLFeatureNotSupportedException;
61c284
 
61c284
 import javax.sql.DataSource;
61c284
 
61c284
@@ -73,5 +74,8 @@
61c284
     public Object unwrap(final Class iface) throws SQLException {
61c284
 	throw new SQLException("Not implemented");
61c284
     }
61c284
+    public java.util.logging.Logger getParentLogger() throws SQLFeatureNotSupportedException {
61c284
+	throw new SQLFeatureNotSupportedException("getParentLogger() not supported");
61c284
+    }
61c284
 
61c284
 }