This repository was archived by the owner on May 21, 2024. It is now read-only.

Description
Error dropping table test_records: OCIError: ORA-00905: missing keyword: DROP TABLE "TEST_RECORDS" CASCADE
The statement should read "DROP TABLE "TEST_RECORDS" CASCADE CONSTRAINTS"
I took a look at patching this by adding the drop_table_with_cascade method to RailsSqlViews::ConnectionAdapters::OracleEnhanced, but for some reason unbeknownst to me the drop_table_with_cascade method in RailsSqlViews::ConnectionAdapters::SchemaStatements was called (even though the RailsSqlViews::ConnectionAdapters::OracleEnhanced module gets included later).