Set the text of the query representing this logical plan. Does NOT parse the specified query -- this method is just used so that the object can print the SQL it represents. @param query the text of the query associated with this plan
(String query)
| 60 | @param query the text of the query associated with this plan |
| 61 | */ |
| 62 | public void setQuery(String query) { |
| 63 | this.query = query; |
| 64 | } |
| 65 | |
| 66 | /** Get the query text associated with this plan via {@link #setQuery}. |
| 67 | */ |
no outgoing calls
no test coverage detected