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