You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The newer versions of SqlRender and DatabaseConnector have deprecated oracleTempSchema in favor of tempEmulationSchema. Not only is this is rename of the same argument, it now also defaults (in all public function interfaces) to getOption("sqlRenderTempEmulationSchema"). The goal eventually is to no longer require perpetuating this argument through the code but rely on the global option instead.
For FeatureExtraction this means oracleTempSchema needs to be deprecated, and tempEmulationSchema needs to be added to various functions. See this commit in MethodEvaluation for examples of the changes that are required.
The text was updated successfully, but these errors were encountered:
After a grace period of 4 years, oracleTempSchema is about to be completely removed. Please make sure FeatureExtraction switches to tempEmulationSchema at the nearest opportunity. See OHDSI/DatabaseConnector#289
Moving this to the v3.7.0 milestone since the addition of the tempEmulationSchema maintains backwards compatibility. We'll then use #159 to remove the oracleTempSchema in the v4.0 release.
The newer versions of SqlRender and DatabaseConnector have deprecated oracleTempSchema in favor of tempEmulationSchema. Not only is this is rename of the same argument, it now also defaults (in all public function interfaces) to
getOption("sqlRenderTempEmulationSchema")
. The goal eventually is to no longer require perpetuating this argument through the code but rely on the global option instead.For FeatureExtraction this means
oracleTempSchema
needs to be deprecated, andtempEmulationSchema
needs to be added to various functions. See this commit in MethodEvaluation for examples of the changes that are required.The text was updated successfully, but these errors were encountered: