diff options
| author | Ralph Amissah <ralph@amissah.com> | 2010-04-20 19:12:58 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2010-04-20 19:27:13 -0400 | 
| commit | d348ae931a17901eda839ef9501e13c9be51e913 (patch) | |
| tree | 12d2c96f00df19cc70619b017e51db79f0705b13 /lib/sisu/v2/db_drop.rb | |
| parent | update: changelog, version (2.2.0), review (diff) | |
reverts unique words list column and indexes; fix for drop indexes; changelog & version updatesisu_2.2.0
* reverts unique word list column on doc_objects and endnotes and associated
  indexes, may reintroduce at a later time
* db_drop, drop TEXT indexes for sqlite only
* update: changelog, version date
Diffstat (limited to 'lib/sisu/v2/db_drop.rb')
| -rw-r--r-- | lib/sisu/v2/db_drop.rb | 85 | 
1 files changed, 44 insertions, 41 deletions
| diff --git a/lib/sisu/v2/db_drop.rb b/lib/sisu/v2/db_drop.rb index 35d971af..edd08345 100644 --- a/lib/sisu/v2/db_drop.rb +++ b/lib/sisu/v2/db_drop.rb @@ -133,50 +133,53 @@ module SiSU_DB_drop          ensure          end        end -      def conn_execute_array(sql_arr) -        @conn.transaction do |conn| -          sql_arr.each do |sql| -            conn.execute(sql) +      def indexes +        def conn_execute_array(sql_arr) +          @conn.transaction do |conn| +            sql_arr.each do |sql| +              conn.execute(sql) +            end            end          end +        def base                                                             #% drop base indexes +          print "\n          drop documents common indexes\n" unless @opt.cmd =~/q/ +          sql_arr=[ +            %{DROP INDEX idx_title;}, +            %{DROP INDEX idx_author;}, +            %{DROP INDEX idx_filename;}, +            %{DROP INDEX idx_topics;}, +            %{DROP INDEX idx_ocn;}, +            %{DROP INDEX idx_digest_clean;}, +            %{DROP INDEX idx_digest_all;}, +            %{DROP INDEX idx_lev1;}, +            %{DROP INDEX idx_lev2;}, +            %{DROP INDEX idx_lev3;}, +            %{DROP INDEX idx_lev4;}, +            %{DROP INDEX idx_lev5;}, +            %{DROP INDEX idx_lev6;}, +            %{DROP INDEX idx_endnote_nr;}, +            %{DROP INDEX idx_digest_en;}, +            %{DROP INDEX idx_endnote_nr_asterisk;}, +            %{DROP INDEX idx_endnote_asterisk;}, +            %{DROP INDEX idx_digest_en_asterisk;}, +            %{DROP INDEX idx_endnote_nr_plus;}, +            %{DROP INDEX idx_endnote_plus;}, +            %{DROP INDEX idx_digest_en_plus}, +          ] +          conn_execute_array(sql_arr) +        end +        def text                                                             #% drop TEXT indexes, sqlite +          print "\n          drop documents TEXT indexes\n" unless @opt.cmd =~/q/ +          sql_arr=[ +            %{DROP INDEX idx_clean;}, +            %{DROP INDEX idx_endnote}, +          ] +          conn_execute_array(sql_arr) +        end +        self        end -      def indexes                                                             #% drop all indexes -        print "\n          drop documents common indexes\n" unless @opt.cmd =~/q/ -        sql_arr=[ -          %{DROP INDEX idx_text_words;}, -          %{DROP INDEX idx_title;}, -          %{DROP INDEX idx_author;}, -          %{DROP INDEX idx_filename;}, -          %{DROP INDEX idx_topics;}, -          %{DROP INDEX idx_ocn;}, -          %{DROP INDEX idx_digest_clean;}, -          %{DROP INDEX idx_digest_all;}, -          %{DROP INDEX idx_lev1;}, -          %{DROP INDEX idx_lev2;}, -          %{DROP INDEX idx_lev3;}, -          %{DROP INDEX idx_lev4;}, -          %{DROP INDEX idx_lev5;}, -          %{DROP INDEX idx_lev6;}, -          %{DROP INDEX idx_endnote_words;}, -          %{DROP INDEX idx_endnote_nr;}, -          %{DROP INDEX idx_digest_en;}, -          %{DROP INDEX idx_endnote_words_asterisk;}, -          %{DROP INDEX idx_endnote_nr_asterisk;}, -          %{DROP INDEX idx_endnote_asterisk;}, -          %{DROP INDEX idx_digest_en_asterisk;}, -          %{DROP INDEX idx_endnote_words_plus;}, -          %{DROP INDEX idx_endnote_nr_plus;}, -          %{DROP INDEX idx_endnote_plus;}, -          %{DROP INDEX idx_digest_en_plus}, -        ] -        conn_execute_array(sql_arr) -        print "\n          drop documents TEXT indexes\n" unless @opt.cmd =~/q/ -        sql_arr=[ -          %{DROP INDEX idx_clean;}, -          %{DROP INDEX idx_endnote}, -        ] -        conn_execute_array(sql_arr) -      end +      indexes.base +      @opt.cmd=~/D/ || ((@opt.mod=~/psql/) ? '' : indexes.text)        self      end    end | 
