提交 ca7e0c55 authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Add missing javadoc comment to fix building of javadoc

上级 08742763
...@@ -229,6 +229,16 @@ public class Session extends SessionWithState { ...@@ -229,6 +229,16 @@ public class Session extends SessionWithState {
return subQueryInfo; return subQueryInfo;
} }
/**
* Stores name of currently parsed view in a stack so it can be determined
* during {@code prepare()}.
*
* @param parsingView
* {@code true} to store one more name, {@code false} to remove it
* from stack
* @param viewName
* name of the view
*/
public void setParsingCreateView(boolean parsingView, String viewName) { public void setParsingCreateView(boolean parsingView, String viewName) {
// It can be recursive, thus implemented as counter. // It can be recursive, thus implemented as counter.
this.parsingView += parsingView ? 1 : -1; this.parsingView += parsingView ? 1 : -1;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论