gdudau commented on issue #38520: URL: https://github.com/apache/superset/issues/38520#issuecomment-4049061758
As a workaround I edited the file *superset/db_engine_specs/oracle.py* ``` - from superset.db_engine_specs.base import BaseEngineSpec + from superset.db_engine_specs.base import BaseEngineSpec, LimitMethod ``` ``` engine = "oracle" engine_name = "Oracle" + limit_method = LimitMethod.FETCH_MANY force_column_alias_quotes = True - max_column_name_length = 128 + max_column_name_length = 30 ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
