(String name, Set<String> columns, Set<String> options)
| 58 | public final Set<String> options; |
| 59 | |
| 60 | public FtsTableInfo(String name, Set<String> columns, Set<String> options) { |
| 61 | this.name = name; |
| 62 | this.columns = columns; |
| 63 | this.options = options; |
| 64 | } |
| 65 | |
| 66 | public FtsTableInfo(String name, Set<String> columns, String createSql) { |
| 67 | this.name = name; |
nothing calls this directly
no test coverage detected