Skip to content

Commit

Permalink
Added javadoc to Session.java
Browse files Browse the repository at this point in the history
  • Loading branch information
stumc committed Jun 1, 2017
1 parent 93d67a8 commit 30d0ab6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions h2/src/main/org/h2/engine/Session.java
Original file line number Diff line number Diff line change
Expand Up @@ -1695,6 +1695,10 @@ public boolean isRemote() {
return false;
}

/**
* Marks a table as changed, needing re-analysis.
* @param table the table to be marked
*/
public void markTableForAnalyze(Table table) {
if (tablesToAnalyze == null) {
tablesToAnalyze = New.hashSet();
Expand Down

0 comments on commit 30d0ab6

Please sign in to comment.