add descriptions

This commit is contained in:
Victor 2015-10-23 14:46:28 +02:00
parent 710699cf04
commit a66a5b798d
3 changed files with 9 additions and 9 deletions

View file

@ -68,7 +68,7 @@ if [[ -d "${ZEPPELIN_HOME}/zeppelin-server/target/classes" ]]; then
fi
# Add jdbc connector jar
ZEPPELIN_CLASSPATH+=":${ZEPPELIN_HOME}/jdbc/jdbc/postgresql-9.4-1204.jdbc4.jar"
# ZEPPELIN_CLASSPATH+=":${ZEPPELIN_HOME}/jdbc/jdbc/connector jar"
addJarInDir "${ZEPPELIN_HOME}"
addJarInDir "${ZEPPELIN_HOME}/lib"

View file

@ -44,15 +44,15 @@ import com.google.common.collect.Sets;
import com.google.common.collect.Sets.SetView;
/**
* PostgreSQL interpreter for Zeppelin. This interpreter can also be used for accessing HAWQ and
* GreenplumDB.
* JDBC interpreter for Zeppelin. This interpreter can also be used for accessing HAWQ,
* GreenplumDB, MariaDB, MySQL, Postgres and Redshit.
*
* <ul>
* <li>{@code postgresql.url} - JDBC URL to connect to.</li>
* <li>{@code postgresql.user} - JDBC user name..</li>
* <li>{@code postgresql.password} - JDBC password..</li>
* <li>{@code postgresql.driver.name} - JDBC driver name.</li>
* <li>{@code postgresql.max.result} - Max number of SQL result to display.</li>
* <li>{@code jdbc.url} - JDBC URL to connect to.</li>
* <li>{@code jdbc.user} - JDBC user name..</li>
* <li>{@code jdbc.password} - JDBC password..</li>
* <li>{@code jdbc.driver.name} - JDBC driver name.</li>
* <li>{@code jdbc.max.result} - Max number of SQL result to display.</li>
* </ul>
*
* <p>

View file

@ -45,7 +45,7 @@ import com.mockrunner.mock.jdbc.MockConnection;
import com.mockrunner.mock.jdbc.MockResultSet;
/**
* PostgreSQL interpreter unit tests
* JDBC interpreter unit tests
*/
public class JDBCInterpreterTest extends BasicJDBCTestCaseAdapter {