()
| 7704 | } |
| 7705 | |
| 7706 | private Variable columnExists() { |
| 7707 | String col = getFirstString(); |
| 7708 | ResultsTable rt = getResultsTable(getTitle()); |
| 7709 | return new Variable(rt.columnExists(col)?1:0); |
| 7710 | } |
| 7711 | |
| 7712 | private Variable renameColumn() { |
| 7713 | String oldName = getFirstString(); |
no test coverage detected