Github user doanduyhai commented on the issue:
https://github.com/apache/zeppelin/pull/1376
@bzz
I don't know why the tests fail on this error message, because this is
indeed **a test which expects a failure** because `system.complex_table` does
not exist, see below:
```java
@Test
public void should_error_describing_non_existing_table() throws
Exception {
//Given
String query = "USE system;\n" +
"DESCRIBE TABLE complex_table;";
//When
final InterpreterResult actual = interpreter.interpret(query,
intrContext);
//Then
assertThat(actual.code()).isEqualTo(Code.ERROR);
assertThat(actual.message()).contains("Cannot find table
system.complex_table");
}
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---