private void analyzeInsertClause() throws SemanticAnalyzerException {
    String streamName = multiInsert.getOutputStream();
    context.setOutputStreamName(streamName);

    if (checkSchemaExists(streamName)) {
      context.setOutputSchema(getSchemaByName(streamName));
    } else {
      context.setPipeStreamNotCreated(true);
    }
  }