提交 c4a00eb9 authored 作者: Thomas Mueller's avatar Thomas Mueller

Fix formatting.

上级 2526201d
......@@ -18,23 +18,49 @@ import org.h2.message.DbException;
* in comments and quotes.
*/
public class ScriptReader {
private final Reader reader;
private char[] buffer;
/** position in the buffer of the next char to be read */
/**
* The position in the buffer of the next char to be read
*/
private int bufferPos;
/** position in the buffer of the statement start */
/**
* The position in the buffer of the statement start
*/
private int bufferStart = -1;
/** position in the buffer of the last available char */
/**
* The position in the buffer of the last available char
*/
private int bufferEnd;
/** true if we have read past the end of file */
/**
* True if we have read past the end of file
*/
private boolean endOfFile;
/** true if we are inside a comment */
/**
* True if we are inside a comment
*/
private boolean insideRemark;
/** Only valid if insideRemark is true. True if we are inside a block comment, false if we are inside a line comment */
/**
* Only valid if insideRemark is true. True if we are inside a block
* comment, false if we are inside a line comment
*/
private boolean blockRemark;
/** true if comments should be skipped completely by this reader. */
/**
* True if comments should be skipped completely by this reader.
*/
private boolean skipRemarks;
/** position in buffer of start of comment */
/**
* The position in buffer of start of comment
*/
private int remarkStart;
/**
......
......@@ -1170,7 +1170,8 @@ public class TestPreparedStatement extends TestBase {
}
private void testPreparedStatementWithLiteralsNone() throws SQLException {
// make sure that when the analyze table kicks in, it works with ALLOW_LITERALS=NONE
// make sure that when the analyze table kicks in,
// it works with ALLOW_LITERALS=NONE
deleteDb("preparedStatement");
Connection conn = getConnection("preparedStatement;ANALYZE_AUTO=100");
conn.createStatement().execute("SET ALLOW_LITERALS NONE");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论