@Austin_Robinson_(GX): Hey @Albert_H_Sun! Thanks for reaching out.
You can pass create_temp_table
as False
to your Datasource.
Depending on how your datasource is configured, that may look like:
datasource = great_expectations.datasource.fluent.SQLDatasource(..., create_temp_table=False)
or something like:
datasource_config: dict = {
"name": "my_datasource_name",
"class_name": "Datasource",
"module_name": "great_expectations.datasource",
"execution_engine": {
"class_name": "SqlAlchemyExecutionEngine",
"module_name": "great_expectations.execution_engine",
"connection_string": CONNECTION_STRING,
"create_temp_table": False
},
}
@Albert_H_Sun: @Austin_Robinson_(GX) thank you so much! Finally it works~~~~