(String colname)
| 64 | } |
| 65 | |
| 66 | public Column getColumnByName(String colname) { |
| 67 | int idx = getColumnIndex(colname); |
| 68 | return (idx >= 0 ? this.columns.get(idx) : null); |
| 69 | } |
| 70 | |
| 71 | public int getColumnIndex(Column catalog_col) { |
| 72 | return (this.getColumnIndex(catalog_col.getName())); |
no test coverage detected