diff options
author | jakefeasel <jfeasel@gmail.com> | 2012-12-09 13:25:58 -0800 |
---|---|---|
committer | jakefeasel <jfeasel@gmail.com> | 2012-12-09 13:25:58 -0800 |
commit | 859b43901a52cbd79495358dcd1c5d105317a352 (patch) | |
tree | b845ba7fbddb8426e49230ec46786f6226ea9bb1 | |
parent | 518657ee3cf230c756494d5457b856ec605cb595 (diff) | |
download | sqlfiddle-859b43901a52cbd79495358dcd1c5d105317a352.zip sqlfiddle-859b43901a52cbd79495358dcd1c5d105317a352.tar.gz sqlfiddle-859b43901a52cbd79495358dcd1c5d105317a352.tar.bz2 |
Stop dropping deferred table
-rw-r--r-- | src/main/webapp/models/Query.cfc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/main/webapp/models/Query.cfc b/src/main/webapp/models/Query.cfc index 3cca4e2..9bbb964 100644 --- a/src/main/webapp/models/Query.cfc +++ b/src/main/webapp/models/Query.cfc @@ -245,14 +245,6 @@ </cfcatch> <cffinally> <cftransaction action="rollback" /> - - <cfif this.schema_def.db_type.simple_name IS "Oracle"> - - <cfquery datasource="#this.schema_def.db_type_id#_#this.schema_def.short_code#"> - DROP TABLE #local.deferred_table# - </cfquery> - - </cfif> </cffinally> </cftry> |