"W_NAME VARCHAR(16) DEFAULT NULL, " +
"PRIMARY KEY (W_ID)" +
");";
VoltProjectBuilder builder = new VoltProjectBuilder();
builder.addLiteralSchema(ddl);
builder.addStmtProcedure("hello", "select * from warehouse");
// compileWithDefaultDeployment() generates no deployment.xml so that the default is used.
String jarPath = Configuration.getPathToCatalogForTest("test.jar");
assertTrue(builder.compileWithDefaultDeployment(jarPath));