chaoqin-li1123 commented on code in PR #45977: URL: https://github.com/apache/spark/pull/45977#discussion_r1572915019
########## python/pyspark/sql/datasource.py: ########## @@ -183,11 +186,40 @@ def streamWriter(self, schema: StructType, overwrite: bool) -> "DataSourceStream message_parameters={"feature": "streamWriter"}, ) + def _streamReader(self, schema: StructType) -> "DataSourceStreamReader": + try: + return self.streamReader(schema=schema) + except PySparkNotImplementedError: + return _SimpleStreamReaderWrapper(self.simpleStreamReader(schema=schema)) Review Comment: Make sense! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org