xplore 0.0.1.alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +27 -0
- data/Gemfile.lock +211 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +36 -0
- data/app/assets/images/rails_db/data_table.png +0 -0
- data/app/assets/images/rails_db/data_table_code.png +0 -0
- data/app/assets/images/rails_db/logo.png +0 -0
- data/app/assets/images/rails_db/logo_mini.png +0 -0
- data/app/assets/images/rails_db/logo_mini_2.png +0 -0
- data/app/assets/images/rails_db/railsdb.png +0 -0
- data/app/assets/images/rails_db/runsql.png +0 -0
- data/app/assets/javascripts/rails_db/application.js +95 -0
- data/app/assets/javascripts/rails_db/foundation.min.js +20 -0
- data/app/assets/javascripts/rails_db/jquery.cookie.js +114 -0
- data/app/assets/javascripts/rails_db/jquery.js +26 -0
- data/app/assets/javascripts/rails_db/rails-ujs.js +685 -0
- data/app/assets/javascripts/rails_db/search.js +19 -0
- data/app/assets/javascripts/rails_db/show_hide_columns.js +54 -0
- data/app/assets/javascripts/rails_db/sticky.js +44 -0
- data/app/assets/stylesheets/rails_db/app.css +90 -0
- data/app/assets/stylesheets/rails_db/application.css +13 -0
- data/app/assets/stylesheets/rails_db/forms.css +9 -0
- data/app/assets/stylesheets/rails_db/foundation.css +6579 -0
- data/app/assets/stylesheets/rails_db/foundation.min.css +1 -0
- data/app/assets/stylesheets/rails_db/foundation_and_overrides.css +8 -0
- data/app/assets/stylesheets/rails_db/normalize.css +424 -0
- data/app/assets/stylesheets/rails_db/pagination.css +17 -0
- data/app/assets/stylesheets/rails_db/search.css +7 -0
- data/app/assets/stylesheets/rails_db/sidebar.css +22 -0
- data/app/assets/stylesheets/rails_db/table.css +12 -0
- data/app/controllers/rails_db/application_controller.rb +26 -0
- data/app/controllers/rails_db/dashboard_controller.rb +8 -0
- data/app/controllers/rails_db/sql_controller.rb +42 -0
- data/app/controllers/rails_db/tables_controller.rb +108 -0
- data/app/helpers/rails_db/application_helper.rb +82 -0
- data/app/helpers/rails_db/flash_messages_helper.rb +44 -0
- data/app/helpers/rails_db/rails_db_data_table_helper.rb +74 -0
- data/app/helpers/rails_db/tables_helper.rb +60 -0
- data/app/views/layouts/rails_db/application.html.erb +32 -0
- data/app/views/rails_db/dashboard/data_table.html.erb +19 -0
- data/app/views/rails_db/dashboard/index.html.erb +37 -0
- data/app/views/rails_db/dashboard/standalone.html.erb +19 -0
- data/app/views/rails_db/shared/_data_table.html.erb +32 -0
- data/app/views/rails_db/shared/_exp_col.html.erb +2 -0
- data/app/views/rails_db/shared/_footer.html.erb +57 -0
- data/app/views/rails_db/shared/_gems.html.erb +15 -0
- data/app/views/rails_db/shared/_header.html.erb +55 -0
- data/app/views/rails_db/shared/_sidebar.html.erb +14 -0
- data/app/views/rails_db/shared/_sql_result.html.erb +31 -0
- data/app/views/rails_db/sql/_explain.html.erb +10 -0
- data/app/views/rails_db/sql/_history.html.erb +17 -0
- data/app/views/rails_db/sql/_import_sample.html.erb +19 -0
- data/app/views/rails_db/sql/_results.html.erb +52 -0
- data/app/views/rails_db/sql/import.html.erb +33 -0
- data/app/views/rails_db/sql/index.html.erb +61 -0
- data/app/views/rails_db/sql/xls.xls.axlsx +9 -0
- data/app/views/rails_db/tables/_condition_fields.html.erb +10 -0
- data/app/views/rails_db/tables/_data.html.erb +127 -0
- data/app/views/rails_db/tables/_edit.html.erb +26 -0
- data/app/views/rails_db/tables/_new.html.erb +17 -0
- data/app/views/rails_db/tables/_row.html.erb +15 -0
- data/app/views/rails_db/tables/_search.html.erb +78 -0
- data/app/views/rails_db/tables/_show.html.erb +101 -0
- data/app/views/rails_db/tables/_sql.html.erb +7 -0
- data/app/views/rails_db/tables/create.js.erb +9 -0
- data/app/views/rails_db/tables/data.html.erb +1 -0
- data/app/views/rails_db/tables/data.js.erb +14 -0
- data/app/views/rails_db/tables/destroy.js.erb +5 -0
- data/app/views/rails_db/tables/edit.js.erb +7 -0
- data/app/views/rails_db/tables/index.html.erb +17 -0
- data/app/views/rails_db/tables/new.js.erb +7 -0
- data/app/views/rails_db/tables/show.html.erb +1 -0
- data/app/views/rails_db/tables/show.js.erb +14 -0
- data/app/views/rails_db/tables/table.xls.axlsx +9 -0
- data/app/views/rails_db/tables/update.js.erb +3 -0
- data/bin/railsdb +3 -0
- data/bin/runsql +49 -0
- data/bin/xplore +3 -0
- data/config/database.travis.yml +31 -0
- data/config/initializers/mime_types.rb +1 -0
- data/config/initializers/simple_form.rb +168 -0
- data/config/initializers/will_paginate_fix.rb +15 -0
- data/config/locales/simple_form.en.yml +31 -0
- data/config/routes.rb +32 -0
- data/lib/ext/ransack_ext.rb +26 -0
- data/lib/ext/simple_form_ext.rb +1 -0
- data/lib/ext/string_ext.rb +10 -0
- data/lib/generators/USAGE +8 -0
- data/lib/generators/templates/xplore.rb +27 -0
- data/lib/generators/xplore_generator.rb +6 -0
- data/lib/libs.rb +24 -0
- data/lib/rails/routes.rb +7 -0
- data/lib/rails_db.rb +66 -0
- data/lib/rails_db/adapters/base_adapter.rb +74 -0
- data/lib/rails_db/adapters/mysql.rb +31 -0
- data/lib/rails_db/adapters/postgres.rb +17 -0
- data/lib/rails_db/adapters/sqlite.rb +23 -0
- data/lib/rails_db/blank_results.rb +8 -0
- data/lib/rails_db/connection.rb +25 -0
- data/lib/rails_db/database.rb +46 -0
- data/lib/rails_db/engine.rb +17 -0
- data/lib/rails_db/history.rb +29 -0
- data/lib/rails_db/mysql_result.rb +18 -0
- data/lib/rails_db/rails_db_error.rb +5 -0
- data/lib/rails_db/result.rb +19 -0
- data/lib/rails_db/sql_explain.rb +9 -0
- data/lib/rails_db/sql_import.rb +26 -0
- data/lib/rails_db/sql_query.rb +43 -0
- data/lib/rails_db/sql_query_data.rb +36 -0
- data/lib/rails_db/table.rb +74 -0
- data/lib/rails_db/table_data.rb +78 -0
- data/lib/rails_db/table_pagination.rb +30 -0
- data/lib/rails_db/version.rb +10 -0
- data/lib/standalone.rb +50 -0
- data/lib/tasks/rails_db_tasks.rake +4 -0
- data/lib/templates/erb/scaffold/_form.html.erb +13 -0
- data/lib/xplore.rb +9 -0
- data/test/dashboard_controller_test.rb +101 -0
- data/test/database_test.rb +20 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.svg +288 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/assets/stylesheets/bootstrap-theme.min.css +5 -0
- data/test/dummy/app/assets/stylesheets/bootstrap.min.css +5 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/home_controller.rb +7 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/account.rb +19 -0
- data/test/dummy/app/models/comment.rb +14 -0
- data/test/dummy/app/models/contact.rb +15 -0
- data/test/dummy/app/models/customer.rb +3 -0
- data/test/dummy/app/models/legacy_account.rb +2 -0
- data/test/dummy/app/models/payment.rb +2 -0
- data/test/dummy/app/models/populate.rb +43 -0
- data/test/dummy/app/models/project.rb +3 -0
- data/test/dummy/app/models/user.rb +20 -0
- data/test/dummy/app/views/home/index.html.erb +26 -0
- data/test/dummy/app/views/layouts/application.html.erb +15 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +32 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +33 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +51 -0
- data/test/dummy/config/environments/production.rb +87 -0
- data/test/dummy/config/environments/test.rb +53 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +7 -0
- data/test/dummy/config/initializers/rails_db.rb +23 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +17 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/migrate/20151013203739_create_users.rb +18 -0
- data/test/dummy/db/migrate/20151013203757_create_comments.rb +10 -0
- data/test/dummy/db/migrate/20151013204027_populate_data.rb +13 -0
- data/test/dummy/db/migrate/20151014074454_create_accounts.rb +14 -0
- data/test/dummy/db/migrate/20151014074655_create_contacts.rb +13 -0
- data/test/dummy/db/migrate/20151014152932_add_bd.rb +9 -0
- data/test/dummy/db/migrate/20151014183823_create_projects.rb +17 -0
- data/test/dummy/db/migrate/20151014184243_add_long_text.rb +7 -0
- data/test/dummy/db/migrate/20151015145740_populate_db.rb +4 -0
- data/test/dummy/db/migrate/20151027192250_create_payments.rb +14 -0
- data/test/dummy/db/migrate/20151027223149_add_non_pk_table.rb +10 -0
- data/test/dummy/db/migrate/20151028191429_create_legacy_accounts.rb +7 -0
- data/test/dummy/db/migrate/20151121125538_add_boolean_field_to_user.rb +5 -0
- data/test/dummy/db/migrate/20170126124628_add_sti_model.rb +5 -0
- data/test/dummy/db/migrate/20180528134358_add_deleted_at_to_projects.rb +6 -0
- data/test/dummy/db/rails_db.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +121 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +3217 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/test/fixtures/accounts.yml +20 -0
- data/test/dummy/test/fixtures/comments.yml +20 -0
- data/test/dummy/test/fixtures/contacts.yml +23 -0
- data/test/dummy/test/fixtures/legacy_accounts.yml +9 -0
- data/test/dummy/test/fixtures/projects.yml +7 -0
- data/test/dummy/test/fixtures/users.yml +28 -0
- data/test/dummy/test/models/account_test.rb +18 -0
- data/test/dummy/test/models/comment_test.rb +18 -0
- data/test/dummy/test/models/contact_test.rb +19 -0
- data/test/dummy/test/models/legacy_account_test.rb +7 -0
- data/test/dummy/test/models/project_test.rb +7 -0
- data/test/dummy/test/models/user_test.rb +22 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-3/-3PeYlcvQFXiyc_qrrBOQXgz0wLtbDmJhBRJnvr1488.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-F/-FcfnnmNMM4wWUjPQEkWH8um5_y6p6emR1g4hU1R2qQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-L/-L3VO1gnEd_gJTuYiwODQ3rYRPun9kqMtacCrOsVY1c.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-j/-jtRJ5XDEWtMk8X44irP5ZNuzb2V9Or0ZboJ7-_niEs.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-w/-w3FuS_th1YUJCm-pH9jBNanNGuEuQXqUssG7amL8Ds.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/0_/0_-cfL0H5qqH5RPA4PMbyibCJab23NM05CKOhjGR7EU.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/0s/0s938iaOX2NBJ-elmk5V7j6XyYC7WxwS57x4aSiyH54.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/15/15WJ0E1sGIfwx4EHMt7T_Mkmnizu-EFhk79REPKcUBk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/1Z/1ZSNTqpklIT68Laxy-YBLW8PUYhAFb1w42qJITlXD6E.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/1d/1dw5JEHHhUR62NbtJtVAJUu_PYxV4zBC_acgIubq4lY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/1f/1fxmByaExPx_qyvAoeeJNTE1AIqhQ1uKJVfiBWkxDAs.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/2A/2Ao98B9hXNr_MAoBE0bkFvOOtNc7dflJmlLEarn5wvA.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/2c/2cjCUV2SoZNb4a7U-CVWPBsrSAT_805cWMBQqcDuR8U.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/2e/2efJrR69SU_l8o1Sjk88tx-cTnS6oSEgnK1Fb0axRAs.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/2w/2wGwWn9F7SrKCg39kjccWMXidHYY5u5xZ4Yt-mOfPqM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/3C/3CqL5JcpBlWG869LrsDkT6c9tXhdGiZvKqNwbclgjSo.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/3W/3Wd315ZKagJ6mOWl95T_zW22e6ACDNh8v-u_r2OP9PI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/3i/3i375XcAdQDkdyabScXo8biz06oNj-NoWYCtkM4FEs0.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/3q/3qPGxuEfQW5R2bOSyG1RF6wvFVsB13tFvdPxZZR-8vk.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/48/48KVVGHhZsPLWcZvWEw9bjwuowgfpvf-AysRqv5EpiU.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/48/48SOLhFmb18qNdB780dOecxhOhEJA6w2a7UOIv82tmg.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/48/48XPOucl5y6xUHclTqp0SyppN3gfeMSRgU9uFKHGn-o.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/4C/4CTQ4VtxEw31gzicc5CHylnyd7nm0H42FF4oYxboXTo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/4a/4aS0J85DqrYD1wy4w459cMFZ2m3CUpgVKLGMzhCMRvM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/4d/4do9oKHJKVkyKuNF7XuU-6X_o0QeZQ_gOZKea8fGkto.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/4m/4m6WqGGtzbJleNhmQJMseHmiOe74DdqItRtznvcLVPw.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/4q/4qrR1dT_ELGScYJ2cqkziobDtLewgTl218LFziW6wX0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/52/52ou7nuAMyALVwK-XNEugfYrU5JzxmqQJu5HpPuFKRM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/5B/5B6lpKu9QoCoRSyrioV2lSVbuzbfPPQpMvXymy4Ra7M.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/5B/5BKqk3njw3-YM9teLof7isqoNM0KYfD9g3_cm4GjkC8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/5T/5TT9-fuPGtt_-l3mShCXHO97l_X0x1J_IYpg3nIKtek.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/5_/5_sVCQD_e-VCdkhi4b-BUT6Dud7KXDY-aSoFFgL6HzM.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/5m/5mgadVKfhwNHEpj2aH1ibAHGwXFqlk_UulZqP9gXb2A.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/6l/6luMGnRMcSYMPpRMuD5Reher3-5eAQvGrbNtUVVy7qY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/6y/6ypGLjzNSGxOEo38o6RIdyZdY3_Qk65bHqrwHNEi7UU.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/81/81gCr-iB9-Kc5uGUwsgmphxJU75rCqLi4V46LmfI8hk.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/8H/8HuSW0OkkqhOtCj4tgN3HZmt4647gNFmdzZz_kruXqI.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/8J/8Jdu6ccMGQk1YXzWahOASmKq8_c044wcnuQGfVLJNIo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/8L/8LOYv3aMRUfxzj3PHgVWnGjLVtTnOtGJzbVT1uYvCgU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/93/93AT9J01EEg9wMy2kazqa2iYDgKLqLS6Aha2JvXZ6Ag.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/95/95D29A-uZ3JE8q1AnmDTfJA_wYZDwFQqqwvdpVQSaDg.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/9E/9ENYoj-DyZwyP2xj1wjNmrQPYLG8MKu1vA6ltjlzBRA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/9S/9SojMkkZhVJXWN3C8NLMxOlAcqkzoJztGIzD9beeX3k.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/9k/9kVCP__MMt4MmgysySWOrkI1q5kqoUO5mJ4YEuVetZ4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/9k/9kfxuo-P7rNVrgP4myFBPSnZV--J2RN-1RpIkUmfBic.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/9l/9lPzFm4TCleQiA0-lgf98XHXLsITeI8cz4C-QY_xzf0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/9o/9o1sXvhEXIQm7sqMwZiJJDY2EfesbCCa2tmgQxJJ1eg.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/9q/9qcda9dG-GWYSUonAOVBiAahGezzHyE3_5CZSc9v_eY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/AG/AGipCopt5nUbCGSffzEPpq__8plTIQxUdwacxoN-sIk.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/AP/AP1aZyJJv_laGt-fcQaN2zOxDHihTya21MP8gLG00NU.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ac/AcKUMe8rYEN-IVydH5TORJW7zGKbXDraafVORgJ4rbM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Aq/AqCxEqcGZVCBSxA9000eYZuhFy63R9oTWcubWiWOsso.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/B5/B5aHApeQYF95u2bVxfgglRilRJ7OrXcZStXwVEx8DTk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/BC/BCTfd6_GQaUTfHdg2F97JpNNwCplKSVycEnha8X9qpY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/BK/BK7tt-FHQqVsq0daFrNI2rXpH0HghqH1xmFUkhS6R-M.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/BQ/BQl702soe7dQfuOyeqsEshEOrbd2lKYMzmpspd0dMQs.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/B_/B_SdfjQrsi-DnNG20ZPUZanDJkjHTvumDYxAhWhIbKM.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bi/Bif-qAEinocIsBM2dpprgHdDRhX7qgxBSl99cGbT8hA.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bu/BuksXaU3jtpsVsJWfiD8cfPrL0ltyzMzFAMYjqRTOcw.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bu/bu8TG_r6XkhW5jRuaIQjL7nSsSWJxy6HU3as-SLx08w.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/By/ByWm2E10VfVkjoo6TTbmHEGCd7ig_YVjcgxLIvP2npM.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/CR/CRqq96DgcC21NgatrM5atJKzdGF-c7LTVKs0RarWRkY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/CW/CWoppfC2IWWZIAHMpTb3hbvKKSSJ-olfkhUa-oHN4PE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/CX/CXBjVb13lPn0ycRm2U8NdpjNrmhUo5bGmQECAutK6gc.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cf/CfRhSnsJS38ZqxUwdmvvUyKui_SQJJMy4xJCEJ5MOIY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cn/Cn1YFWYIDZLTEh8VsPw1kGmSRxY2WCMkazIA8VkP0-w.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cp/CpekvnYgBZcdkmAPsnBvhl-3XakgVnWE5M47gqeEflA.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cp/Cpmy5aKRxqQZrrkXhIdbeeVpkfOvAMjZm6k6W3Y2pl8.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cs/CsyBxyZKg8U8pUjJ7AxR8oMqNTodkSOxFhwYsY6asMg.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cu/CukP1uyOWDQREAZEqfh1Txnt6k-NVhGTaId_ucRKiQM.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cu/cUlsdL1D57TWpWEBMEOsTKtrMw_PI3q8NKENxL86zfE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cv/CvOuHLIkVkJEQ-AYwoFKAwesvgbXsTt-fMKDV6QaTbo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/D0/D0cusWF2ayrU6hgv_QDiZctO9-IH4aZIhzpSXyHUzYo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Dd/DdyZEcJEUOyLdDmKc33qawMY1cGBU0Px41YYpdNLJZc.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Dz/DzuURzJufWmN3J2X4VVFAWxtOUN8D2sX05nTqa-4WD0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/EQ/EQoeM-3-9VOeX-k1WgrXj_N178FWzWDE6ECLdZk4D_4.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/EQ/eQ4mbVGKgOHXzFlC5jhTAgNJh_dqeArvASV2SvPQRd8.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/EV/EV28enuY7Byeo2_FZK8Twj1N2II34ZP4Mguf-nPmAc0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Er/ERIHCPkl64fiyFL2mA-Nr8fyTcHpUjnEBJaeNhWzubY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Er/EroaWcS4PSztx0lL3D7vJLZD7HiuCwhbgq_9b5JLTLQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8JQR4FqJLIeiRUBPCWgS9pHRMdubVx4y1REcAODZHw.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/FL/FL6cJm26SynhVArz0GkU-n4CuR7ElGe5r-YjyO6bXcA.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/FL/FLcEIHdIDjSY1xZe0WjMgxbhmDAOwsEKpOSwJdlMtno.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/FN/FNOsXXTjZ6F_bcWBC6lIPvOGHV0MI17gqksD9T_Mq-s.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fd/FdVBx6mbDTiCdOOexu9jmGzbjAtZE3-usUlmAcsW-dc.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fh/FHmoWUdwgE5K7al03RTN9xmyZ9fmnXGkhxzZnaMW6bg.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fh/Fhq7IP9lFrou1E6x46HiuVfPDyejTjpwDDYnRcNniUs.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fh/fhbdIBT890K-U8d0NTFwdjeqeu-wZTy0_gxba2Q3TFM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fw/FwiXjnLLgGTbJ2tZcnFWOp30FIQFbt42kxicUMneUFU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/GG/GGtoQv-oNouv8ngyTssBtYsNtYeS-XCQhfF12HSchOs.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gd/GdFWTQQh4Ph4GJsFYMQlE-xlPZ8S_CyzsMLvscLk5aI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gh/GhmrxaXgsgWXgfDUvZXHELBc_992TTXdQNxGzHqToRI.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/HF/HFP4GoYWiFWdiVCWZlJd7HrbTKq3pdGl9qHp7CRJOxw.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/He/HeZLBao-hq9x5mTgWjTl6XKjeZJHdsj7SB9oV-Mzq_s.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hl/HlaVjEkHaaVWsq7zsF8l4yqxRKS0NAz72Lu5Vzr9V2U.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hn/Hn5FDC3mlD11N8bTv_N1sQA-4xI1OfN960CTe_XEu9A.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hr/Hr-nJeHD-eAnjQj6zCWSO7n_y1nOzY8k7EawA-S31ic.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ht/Htgd9CKkzWhCQV3jqil5EL2l08BXfX5mpIQRZwMwTHE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/I7/I7DyN8KeI-B1SijQswt98KeWqGzCIwkgpJw9dO4gojI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/I8/I8oMm2qQE2WUnB1WDLD4YD0Ncct7TsOyaFsViZHotP4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/IH/IHyW3ES2RV2lmaVwNY8X6nKr2qfHBZeoyTqf7TUWrlk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/IH/Ihh1JHJknqP5MjPo2foVJq_rJUFNJA5h9yB2qe656ng.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ix/IxEPmATxPF3C4G06Njh3M3n0zCeIA1mTbUfYu0xb5sQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/J4/J4CjKaMA7j4GrlxdRrH6SrRH8ZctW6v7jBck9alkqck.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/J4/J4fvKSYxyw9yQ8-ox62u1o3pMTGv1DZQH1qmrLkNSrg.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/J8/J8AyVO4oGJPp_lRZJdM9p6aCTv3HpEx6YB4mcV23GFo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/JA/JAKRpPJSPAuMV2TcjGwejA_--U9Nimo_aBQy-_gKJZk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Jj/JjlloPfuXCh60beA414OFTzpq_nI2uKW_USQsw3BGWY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Js/Js7BoIA-JQMis2bvhSuWjlMglxobVrI_W33nDGnYcc0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/KM/KM9phN_DvMYH7h3DLsmzWbITRoKhKkYrZJHb4ckO3ho.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/KO/KOohyS_AU6sbx4m0OIt6DmIuaqQ_p_9A67HX0_96iOg.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/KT/KTsgyrC1qSHUy9RQU9IncaxI254KMUCizTav6gxv3-8.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kf/KfOG4Fsi3FqCIc9PcgBMimIWabgiRbkAx87aEt1ytds.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kz/KzgA28xstOReawAVU0JDV3pvnaLzvNuJBewJOUAeWU8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/LO/LOgMdbYddRrfyBBp6elqVYfyfvWpSZ3PYJayuNB-_54.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lh/LhKJUZ4ft6Fg6YJAPbLM1W54r6S49oL8Qa4buabZC4k.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lh/lhjWv71mAvpFS9-lZBgCjy9GR-CZ4sZAzbynik3F23s.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lm/LMnNNW_mizZta3b9V7SunJHLs7cBjVS1ZryyacST3JU.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lm/Lm_DD4epQe2RSyqsKWuQ83mdNmJUXFoD7YgpFQQi9-s.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ly/LyvAGF2_S2FvKOXBaiSrwYVNlNUIBTplZy7uZY0enPc.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/MB/MBY5JRtBoVJe-l7z4w_6MlZKtiCY3c9AH93D6AWr_dc.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/MH/MH0wXb004Qh8NjXfHaQ9VHM80zpVqJWn2IdWYZn2fOA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/MK/MKR3tvTaaq5dMIYInpCXi7nHFzm_ARvc0CfOPnsm6cs.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/MN/MNwfbu8Wh8SvM7fzfrv35RAPS50ML6tER1qP1A042WY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/MN/MnffuolBZQlIvggqEdoH3SrTZI1E5Gj4Ps3SP8iQwJo.cache +5 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/MW/MW6BLw8iNNmaHpgiRntj8pZ3OwWFXzOTXBYFe0ORYLE.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/MX/MXdIh4XKK-U-rfqZcm06dzesD7ff0lt_KGFmNeORTQg.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/MX/mXryAndUH_7D7PtUdOsMGY4Q-Q44COVvYcy5l1OPXB8.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Me/MeJjMkH8-c9rfYbpCtJ5NVDyGlrhJONjmQfT9BtJDnI.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mf/MFv5RzRs2y7gZmEAbCM_jToxQhhQoolg6s_a42Uk268.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mf/MfWK7Yh1fF5omJqLInj0d-v7URlzfS60VJg7ha12Avc.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mp/MplgwPZfY7HzQuFhYfeLUP334Sj4MWVAE57np81LFmE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mu/MupDm264iLpqMzSa2IBpAyGoV8cjHmF74u4eO8di-lY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ND/NDEDH77zxXBYGMlSjOmgk3KyC6EbD9jBgsti7BcCG18.cache +5 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/NJ/NJ03jKQqsipCLKS_tGee2EHtCdKR9LBtju1s9wXkXNc.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/NO/NOK1yx2wNqmX6ncyPV_ayBA6kAdWxyGPwpnhyAdUlgI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/NQ/NQwazzUgAilBqn-UFZ3dbQuHYFJ2dUxCkoj0242jDpk.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nc/Nc6lSeCjr1GUTrzCKC1a0nAF2MD_vdMvyqqAlWEKW7c.cache +5 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nh/Nhc5JuuhoiLMQuQ5idGUbxDO3ovk_RqWE9sa29InlzQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/O7/O7b0X6n6pfRC-_DJzcHhCwJFMQU2Ilb2cVmwIZlNEuc.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/OK/OKk418MFdrlM2SJAPb3dtbREHkXzWP2md23Df18nhzo.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/OL/OLkHnuRmLuOiKTC2JLS5HGy724lYQIAKIvuwHc8VARQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/OP/OPvZadSxmkLXfQdEyYYsD5DJOTwRv1S5oYAjvN8H_sk.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ob/ObVcDmLTirRM_cBRT_CrpAI4LYN51vkbD7W-hOm3QOk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Or/Oru5w7cn82DamvfliV-HZKTsJd_yvK6P3nTL_5fTqoc.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/P7/P72PF0QaLk07pMWtIb9MSguJbYMQLApufmYVPuG_zSE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/PG/PGQreiYj8zH4MR3Z5XaXMeA08Sfx47WwFNTgJEtTpXc.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pb/PbnPeRHsnGhvdp23TsJowZPLwOX-Zj9go0JXoK4lkCk.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ph/Ph6pBAn9DmaFU0IViAwCYeyMV2ZdqfGlCk1CyYGaWqw.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ph/phu-Q1Mpi6ST92yZbYGn6nJj4frbMom02WRoi1dx_dE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pi/PiPz-feZcumRe_xruSOiXuNsHL6mChOJxbSTm_yp3Rc.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pi/pIVqc5tXAaLDSQbx4dvcFawX1iRPdcw_JTjDIE6Y0eM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pr/PreDzDw_R0LBkwMGTcVOgFTnOv5cnzKJPAleUJcs_Eg.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/QA/QAjzb10d_j7yMXJCjZBv5xFmyu96nTDA37AD02YREHM.cache +5 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/QA/Qak-uTKtzaAi_F1g3phS6PsdRmwJve7tIDnltlAqCGc.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/QB/QBtqK3vzTGr0NVFIZUuHQ_0eqtMFGI0EnR7MjEeDyTY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/QS/QSXLPzJ-35KwzZ-2iOUXWSEFoxjjZ7A6FFBx5Wj5UxY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qz/Qz2H1qzAB3FiFAZtSUJEM9jy7Ef-EKzTx8GKkhRwQRM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/RP/RPQbWtOXi1K_5CsSX7Y3kw8dIcIsdAH45Zo-M2y-c8k.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rn/RnBzwKO0wHpcX8ozxOXNfOYGdKtStuH26dvZo4yJs9I.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rq/Rq88Si5DhV1oXaO1oXygHlSQ4smn5lciHF3hY-nPcWI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rs/RsmwcD4uDKantaLOGJZrjYCfruM1SB-ukpSGdzTOwf0.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rs/rSpvB-PtdIGfxMyHtxoYBjRp6_MUsoWBXMWaQ3Qrizc.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rz/RzFltAlFtQB8hPdAmY9eg7ofLvNoKSFh2T2d3_cUmyo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rz/rzbi2r2CCcZ6AN4OXmpNo4xDmJLmcHXRjCcVvxyKKe4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/S-/S-I4R7GrD3_tbKGG_Us9iHf3srvB1URoQs4Fr1Svkj4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/S5/S5uwg3C-Vzlc06OAViMVVvDBLtd5BlfnLhzqpFeRvAw.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/SR/SRo57NF8zr-sEWOuJ5-Zs4UkeGfHbKhfslbRmbN74jY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sf/SfQHdY5A04tlXTxWFmI7jbT1LjlzSPdOjsLh941dAAI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ss/Sskjz8bUd3dYQ_03Zg5Q78rOxTbK0X9A-Ck2_s097iM.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/St/StX1otXCzjobPsofg9roBn1DfTbx0c2dzlja43_2AOc.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/T7/T72E8mac8dhJZcl6I78UlkJ5ZTNRDm6ArbdB5dmtFyA.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/TU/TUYHWEN4Y2k1_mozVyoBtgoDvpm82huQiTdqGiYZjmM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Te/TeFI5V3bZ_X9Gw-MnLbi2Nkx0pWdDbjwJ_gng1vfmd4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ti/Ti06vctt40EVZ99AKJNjXk3INvYpMl8T80cFiz_0KgQ.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ti/TiImQ_kn1SOcaq9eHrj_FpZxmCKOWOXbXiyRzJLJhV4.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tw/TwDQHCkV6ZzkI_VqM1kG3fKrKADp8J4Z4J6bh-1-xF0.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Uc/UclSgWx_1vT02Ys1CDpx9igBIYJwwlz7h8CA1sMiXqA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/VD/VD_Tn0Z0jCNrNM3KZb7xZOx9CzqV4KQUKamn8wirYUc.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Va/VaHHjmQCLMgHyRDkoAyNcfP1BkqTe06LTlNrDXZgXJQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Vb/VbJlDkUFdjKS2cBmQG7sjNOerFOeFJ0XvYupImNFc6o.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Vu/VuTlKJwAqnUWDMOQ7lEQUG1A8kqRhioRqaAxnGrpaAU.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/W2/W2VlfY6Z-VO_vusbjt1cID2Nbwo4gsl6UCP8HcDlVcg.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/WI/WI6lJNbCcLwTuOfTa3XX6qHTBnl81f_z45FK1hCbIeE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/We/WeZB6YYUMbKj614c2jVZga64L9ya2rjrPgw2itYygwM.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wp/Wp-V-YTFZ6bo6ybGNQ6Lo5WPynYals6ajrtUz2l0HxA.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/XT/XT8crKygwq2SKcsuX-I96xndkPPYKfjSv6Z0VmVRykk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xc/XcMbv9lRhcgRF8NfEiiToZU54IMuP8Y28pV1U6XyvFQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xc/Xcq1pAgJcuawcXB0C-l-eD57ax-GKT7UpID3cceCKRM.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xf/XfaseJepcp01pidO146XHO1OgRsTabfmeIa0UcX1dV8.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xf/xFmKt6WmAlQs3IDU_0OOGA5fC8-PgCQGDg4IZjz2d6E.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xi/XiZAxKYuwmh_Bqe1PaKvY9pnBeE3hREh2ttamxoxaY4.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xu/XunbhdpOapnjHE4nTJwV7ajm4WokOsnFkGYtCi8uAE8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xx/XxJtq1CvGAQAwglYKKx5cfyn-RlY4XLBVh33gXdAP2E.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y0/Y0WMge8wHotrrkKwHNkfW58LK_-1gh5-mDUPLeZuakg.cache +5 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y4/Y4tJAYSQeHBol_L8XnoByBPFUJ9RVv9qiymv3okIGxA.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y7/Y7ZIlWhKcAhXiQ1OZrtQ3rrBk_G5bcMp-WvDyiCNDE8.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/YC/YCJTSU03W9asgyOzgNp91MK4ediXxWxQADa7MjNiU8Y.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/YG/YGUC43_6tCOZ5caKiIe6PYoUCHmXyUZdkE6cXKUW0NQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/YG/YgWiq2WB9iArBmSY-pPojxGkVcj_cMlIQGtMF-YfjKA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/YX/YXBNdEIFY6eNKTUAJGB1DJtETr41xpqqvmi4ErRYiuE.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Z2/Z2PyD0TJO_F7FYcOLm3LvnNImEgIhnw4Jz1FuAv6im4.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Z5/Z55_IZamiEoJGwsWJzN6K-URUGXaxYoo2c3fCds9pHc.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Z7/Z70tHT4FisKR9SpJ3-dgYG1gIuSfjTRsPRz-yRdMSWI.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZL/ZLQmeuVGNaF86uWftyoCwCOfXO2axPI8zM4tZdDRekY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zb/ZbH5w81L2WpjO3h9Vl2WjHPFOFieLeiQb4Lbx7cufig.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zh/ZhDVlWUx-LwLR2okkrh4-cANb9_cS0-x5Fymq41FJAQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/_8/_8cC2SwhYxGZtiYZTnZzBvGTI_Q-1_pW4p1QkaI5H60.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/_C/_CbTvgMsLIUbiKWuqtPXPVkMM2LToJfjTBUbGJZ-uMI.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/_K/_KHDLW6h8j78KP8e4kYGRAgx1-t-UZ4nXsjwxkPfTnU.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/_K/_kVzjvDm5fobGVXeeGmh2Deh9aB2WQHRaA2e9MSq74o.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/_g/_gBBeMa010DUV34oUrDujAlUOj49g6QzDt-C5IKYQrQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/_r/_rVuG9yGnPR6hv4H6gqEYypbFnJjt2h_VXbdvHbASgk.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/a1/a1D4bnDagns7ADr1TbghjxXhH2kQyWVyb_-GKUHiiMA.cache +5 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/aA/aAD72vIH7L3KyJkCrk2w4yCd-vD1ubyMcadGJg6E4sU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/aJ/aJdZdyFA6FZlrmMyRqkfsB-WUHeIZn1CA4p7jvtBYyY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/aM/aMylVJ_m7mzxSc4s3f4EsqXaVh2qZ7LBBo5sQLNWbQE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/aO/aOGMdVzyTgYfeRxCDhdtM0vlLQYmO9dG1eDkMn8xT4o.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/aY/aYoku5b2gnqUualKyixnXaFTsz-zNWG2TeaBEDKuBvI.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/a_/a_5u0qbwrqm2iLQoEfr2oLVhPTm4_aRLH21NSk-ng64.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/an/ansc-yxpLxm-mUPhj4eJL-XgEhHludiVLMhkrhi1xYs.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/b2/b27t1oQmfqXDmLgIuAp69I4Qgdzu4qN3TdU13EEOdX8.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/bh/bhADdGRxMpUsw7qjrVZZ2cgNlIv6S6Q00bB-1UxWcis.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/bv/bv3XSxiErOEr77Z2sTURC_sJyJz1m5neTKP8T4TxELE.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/c2/c2gjq61xXO3qQTDyuYH93r1cf_27mDmsqocFSGSgrzE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/c3/c30JBbcBOEs8gBtsuV7uqAWpIXdtZKtGqaAUedUTg6s.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/cI/cIymWKZfZGPxQCtvhlRwFxVCeMm2Xt8G5Km-2I5Mq28.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/cO/cOCIJ3FGoaQ_tP_zHW-gpc0331pP4VJXRaYk_oX6a0Y.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/cQ/cQK8L4_P3hvTsZCi0ZI8lHoRz_6FrzwOXv-gl2xfHbk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/cY/Cy_ObI1j-9i7wjxGShjQ2lMkkUwwgtdBqail2pfgke8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/cY/cY2JpKdH--3sMZobHE1KnuqVRy2G7TAMQJHQk0AJVZI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/cc/ccUVGjvmS-nbig19Bi8Ni5yCaiPCTc2uFwmy4qGpEI8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ch/ch41pAlE5hM0BcI-5NKArIOKM68dEdNREO3h9q0aNJo.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/d-/d-aTSxXEdR7XROaAxEZJhIw2nzZCUfaCCKXyHGtuiUE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/d5/d5CiqFoIO9r9bc6qceYD8gSF7-3JKXyW2rx9uOvaG6k.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/dB/dBhIa7VW788UyNm13H6bhtsDWvLZ5lOBnLhKMozMokc.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/eL/eLubl3xkj_6LVTp8OADOqfSbo7glb41dO7JbBm61s_U.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ew/ewEizg6dPr8mfcCs-xqI9aNfgpJdJsnriy2YWYZEgtg.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/fU/fUarFjB0688tNKYojsTY0Q6AnIQSxitc0Bbg2pH1DFY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/fV/fVk9n1loMq7tyRMZ1ABLBNI9cpHLqhjnBevdcqIqwbY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/gE/gEBuwzYT4pCORNo7RVlMhYfK_A_TpNQlhO0Z7glpza0.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/gP/gPcu-zds7oNR34-K6vO_toa_C9dq9yC6YEJsHWcetZE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/gT/gTC13k-_pje-P_LWe83hQ9_3C5cinGmG8ckrar4b7vE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hA/hA6P3GNydgkBcThlx43fD7f5i-TNg63kMM9Svq-rFlo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hD/hDeVHkbc0peefzWrGXr3spmE00IcoN61aCJV1B6s3FI.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hX/hXvX9Ho9Ca_b7dDXQU2hSXhrtM3ahTHdOngPiX8vaM4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZ/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/h_/h_mKX-USNiJ58Wkn_nOZm5pSSb7RdaLtDQPLljNPm5c.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hi/hiXKlS0Ij0FhF-HT7GOFOaZgPmnaHBTFvpW8xWhUoKY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hq/hqNC-zONlxNBuACvSRXgQbOj05AAU0yZCoYlEmPusGQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/i6/i6rDaD0uIR1_9sE64Bt8WhSJUJehdPWCazZH53p1Krc.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/iW/iWF3KM-CoYfYewKKFLGqMe6Js4udb5A1VU4dYWiA1ZE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ia/IAQhn04TAAbdns48nWWtFLCRP7sZiJJMZkFhn0KtHpQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ia/iaRvxoIJppNNUcxq05MJCFE0Nk-ENvQW47PWFaljODI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/jO/jOOKv56qYGTil9DG4f7W3SkkpOCBnO7nN4zyB3ijAM0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/jQ/jQfDsJh34y9K_Mwt8vn_DsRF4mH2bI-_Kt05c1h3SJk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/jy/jyAyM-S8Hv-RVB253BGqNN9kOQuN_CdeFQrxm4xrNpw.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/kD/kDBJMaikoSvjWq5v0OKCyJkeISOX0NyN_BJawSAyZCw.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/kl/klszZ9tKNHUzYFO1ghLNJNk46ZyiG7FOL2YiFW1SMeE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/l6/l64SzZqDL8VHFagT69MfZsApPKo2XmPfW8qbyJkUtPk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/lE/lEbCGczYsapgUQJAHHCUrje4NqIVEV_BFWnKHlHh4QE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/lJ/lJllhgvh0nBq0PQX98LMaxhOryhozLqC4XnJt6enwEo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/lS/lS-kUvyhgeyfmAxaM23e4HWfL4L72Aza1nhTkAsPU3M.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/lx/lxrVJxLs2THXTcDZFNAVxInY_7tQH5ShcmzSk0FwS2k.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/m0/m02y7e4alD7bt814oMoE9pKsn6J0VHON5iQTgBsIOJ0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/m3/m3ZU18hx3_j8FTVWlqRoRQu0ZExBwNreJsVXDqRrOkQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/m8/m85R-j44HyTYL0BUo6OsG9Flk8tqbbbSa0vkSEJHWls.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/mA/mAM3_EvNQ4x_-x7O04k0W8zyWraMIag97FsCraNL0bI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/mL/mL7K1nwsub7IX4zOqM9ybwFK-Rn2Fc6KsYuMiIZ5iNk.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/mq/MqoyNtDyweSEqoUM6Dz4O6NZehwuU1QQWwM7Tu1DcNk.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/mq/MqtMzKjbIWIAsFVHCgQvQc-W1erjYjPpBIBRQCZ_9lI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/mq/mqh2hV4U4F1XcEpjsBes4qAGkzrHfCwK8kcgKy0B5yE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/mt/mt-zpRYXztYgjwR4Dttl8uLwsuEvInHraQLkalp2Lvo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/n3/n3d4-cXhrHxAkyHeqTt3MUmW87nKrTyWTPR5PXJT1UQ.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/nS/nSqcTc7ksjMvX7HMvvAN8UNHZcqHgqWJgdk_p7J33yc.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/nU/nUPt2yJ5F0IzL4X-uFr75K1yjHCNWnWodmSD2Q3ePow.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/nV/nV9Q_zvI9VVWHGNnvg5UH1bMambdHXhoUl2Klis5Olg.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/nV/nv6-uIDkR08qX4UAL1wvVMK_wKpA3tfqQOnOU6EPc3c.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ng/ngDxvyt1qPWrOuH9Ec5PJ5BIauhFWOT6kUXZOS6JD7k.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ni/niVUoVEMUptq6L7GFj6Df_vajoeWEYtSF4BHTsuLmfE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/nk/nkMBHmh_iFVgb8ypWr4DtlYsU1ZD3UTSNCzYpXFK8W8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/nt/nTZYlARAnG5g8q-U8zWURuU1z9IWX6z-PA6xULEd4tM.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/nt/nty1vyqRTT9ZwM-VvAOhFwXsiRYbrIIkn1sDryllF4w.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ny/nyxTn5bqrlJtoUx8ld3OiNmJi0vYLE2AjAJU_LdgiVU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/om/om9sDSCeVCEvLXtZFs7cJ502yuu3DgCV0rJyRFm9Tg0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/pD/pDNG0DHssdNdBIQELe4Q-KNK-i0ImuuuzB-15sydB5Q.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/pD/pDrjNjEg0enP9011qtyeHSapbgbPdVBY837YBvkBvfM.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/pD/pdB7FVeb2vsK0oEkIQqaKUNjdLf2jxMMI1P1PY6HinY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/pE/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/pF/pFouMoU_fI_irjFY_evjOWSSbbeRkRAWcwsNh9WnweY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/pp/ppHKpJghIYfWiR6EnvgPIWpb35vpP2OBaxHL-12Jn1c.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/pv/pvzfY4ZeIxBDbR0Wyac-jKTZe7zD91qZJMNj-gLEavs.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/px/pxWUhkjqxrgnxzmySwgzibIVh75PIaNGpw1RBqACDdI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/qP/qPSecOgL03_rejsx9qRAFaC2FBN3FPAJUKfY2TifBuA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/qd/qd_SRtxWyH8whyF5iehawiV6ZgiN2ELhiTpobL5e_6w.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/qr/qrUmzvxmLCNSxkxNsaGiEZz-sUiEvCmCmSp28QHQNTI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/rU/rUIQboNWOP0FNBERZ0OEgDlCxJu2Ztc-5gWhQUzGZrc.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/re/rei-92HUQC22z8L2tptN5z712YBu6M23yd3xaFwl0yg.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ri/rimBrlzHvkGFU1xaYtO7xWikVuFmZGF92pWMQx8CyzE.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/sI/sIDUnZiq5Pe_6DxJVAKFX2Eyj8DodsWXpFGJ-n1dYmQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/sY/SyavbFp1xbkYPU8HvFkkhVqx6xFBGECwuqwVy6RbLw8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/sY/sYqD_6_DLhWbWmBm4ZOKDNI8bKtF7czThI6GXwmFlMU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/sb/sbAN3UaNGrkoCktU4fHA3KF5HRVD39kmr-vf61veyOU.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/t0/t0DShWYlmKYn-ztyiUhdugXS0bE38VngZ11fm0z14A0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/t3/t3tyC5tpIWAypI8HOhLys2DYBLDLrW3KzE1lmOleVU8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/tZ/TZHtEy3CiP64NmTlObIU8cOaUPPdkdOZ30f0kqaDxd8.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/tZ/tZOwipDul1-aTSIEZ80QHAwcqVFkYRLIVv4XLmYgj2k.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ts/TSHjblyZ46JIvFP6qf06MT8qLDuQCxLAvwUcImqML64.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ts/TSkeC-eU6bKfJsYmspi_oEYsv6pAgvYk2CTjKRc7BlA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ts/tsxgaFTY-T14imbVrZ7Kf8KPluun_Fw_x58uLbN4fNk.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/uF/uFbaXajtMMDAOXWl6eU5Gmuqy9dwVoLas9Jim7dSg3s.cache +5 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/uK/uK2ko5z4BFMcA_o9sD_Fyx5jBBYhQALEnSYm37mv_Lw.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/uW/uWmVCsrWjr-iOieidZGPG9-5fj96GX3cANB1XROt9bE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ui/ui8eGB_aYgZ0q-aC6cjiPs30BIJ_I9GWCHQQvxGzzXA.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/v0/v0CmZOmfuQCNGpDkcSlCQMh5vEK-jWEXvLZqvQrC7xo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/v5/v5YkfQBmXgVc14PZpSCGIBT-Vdwb9nnis8DLiXogo2U.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/v5/v5eeLDViPQrO3neRevMDKLMyU7_6NosFkSH2XSDMSVA.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/vH/VHYlbUy6Drh_r2SAQKaaSQp-vVAs2W995MZXODWMLyk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/vH/vHVLf9Kpn7ZIsAjK1wybCRFRnwFm31mSzufZ2E4zwZU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/vS/vSXxaWQqvcbpdKaDiLcu6udK12iZKckJjnv6dBesBuE.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/vy/vyn1m_51cpUyRWnkj68qWZz3Nyxp8uCV3t-vZoNaZQk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/vz/vzF4jtIUQmjMF9MSfKi_4r02MBS65jdHdarhNceE2Ow.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/w6/w63utD1EaQ5L8Dwj4W43hxvR3uWxn8LRkwVEjEscpSk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/wQ/wQEuPUtM63wr2c4HK4yAyTcwsWPoIm_aaY61jsvRzho.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/wZ/wZWBriQjeB0b5NDTDbfXoaIoKbFJdO3yjiRrONUcz6U.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/wr/wrp9M6KC_3oq6hKcNJ8Kj3MNpzRK1eNrqJWtrr_wlM4.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/wu/wuq-zoQvtKeWwYJ_KcBURUoJnbqoYuLN3c4vvEooim4.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/xL/xLAnnuRc4_1YiW2ZFZq8_-NrLMKVabDg07KLgt55YRA.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/xP/xPjuPqeVIVOwvZZwsoeySDK683g7w9iWJOepuaNVzhI.cache +4 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/xW/xWR54YJsohiIkX9ruCOvc1m9gtfIlDxTwffZIeWgArU.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/xY/xYL-jGrZm_3zo2G6zeNSJLQARo_wgpUIaXUOkIjXvkU.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/xm/xMTMSeTx9lrHYrKXdRl8VUymkGwUoVoJViTITOWcFB4.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/xm/xmlC7ZNCBk1FKDSFSCtjBsjhCqsDNbYlGVUq_stMR98.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/xo/xofRtfVAB-nwa1yUWmi_V23IjMONcrbWq53Gc_dDK6w.cache +3 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/y-/y-yZ1fTnCLFsViLVccN9Cc3G2I0da36tG984Ws3z1cY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/y6/y6pI8nXIwEcqXWadxbE9ov6tsZyn_s342gGL7l46qbk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/yT/yTjZO6YuU6fs__LzxjV8P2xNtxohVIHydCfUMLwpmRA.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/yf/YF2oZijXWqTKrQUK0VGgz3qlKNbT-6Urm5Kq63shSvY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/yf/yfnaaxWyzJ_nUuLfMd7HcNZ37zAkkOj04gjZP4_-FPQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/yw/ywk4t6jo9cZ2Fdvkf_UFbybOk5Y0dOJ8V77Re_BWq-g.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/zM/zMcsTJgidKVERcnyOt6lwLSGkvBdfd2pBXd5QpyWdCk.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/zX/zX3isg_XGiX4dTw253dv46c2_6jbOSjoHDsndx_zkws.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/zn/znmB9J2iEm4qBnXMpaVugIzycbUqf2-bGRYEJhogCSI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/zo/zoCcgwkQpt4-DoZZMglIjDhbAqwpdCUS0UhhWCoyU1k.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/zv/zv4MbZ_Snrtnmt5KJKA0SrpHnm8KSKVpuan4elWJmBA.cache +0 -0
- data/test/rails_db_data_table_helper_test.rb +35 -0
- data/test/rails_db_test.rb +13 -0
- data/test/sql_import_test.rb +16 -0
- data/test/sql_query_test.rb +28 -0
- data/test/standalone/Gemfile +13 -0
- data/test/standalone/Gemfile.lock +140 -0
- data/test/standalone/README.rdoc +28 -0
- data/test/standalone/Rakefile +6 -0
- data/test/standalone/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/test/standalone/app/assets/fonts/glyphicons-halflings-regular.svg +288 -0
- data/test/standalone/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/test/standalone/app/assets/javascripts/application.js +13 -0
- data/test/standalone/app/assets/stylesheets/application.css +15 -0
- data/test/standalone/app/assets/stylesheets/bootstrap-theme.min.css +5 -0
- data/test/standalone/app/assets/stylesheets/bootstrap.min.css +5 -0
- data/test/standalone/app/controllers/application_controller.rb +5 -0
- data/test/standalone/app/controllers/home_controller.rb +7 -0
- data/test/standalone/app/helpers/application_helper.rb +2 -0
- data/test/standalone/app/views/home/index.html.erb +3 -0
- data/test/standalone/app/views/layouts/application.html.erb +16 -0
- data/test/standalone/bin/bundle +3 -0
- data/test/standalone/bin/rails +4 -0
- data/test/standalone/bin/rake +4 -0
- data/test/standalone/bin/setup +29 -0
- data/test/standalone/config.ru +4 -0
- data/test/standalone/config/application.rb +45 -0
- data/test/standalone/config/boot.rb +7 -0
- data/test/standalone/config/database.yml +0 -0
- data/test/standalone/config/environment.rb +5 -0
- data/test/standalone/config/environments/development.rb +53 -0
- data/test/standalone/config/environments/production.rb +90 -0
- data/test/standalone/config/environments/test.rb +54 -0
- data/test/standalone/config/initializers/assets.rb +11 -0
- data/test/standalone/config/initializers/backtrace_silencers.rb +7 -0
- data/test/standalone/config/initializers/cookies_serializer.rb +3 -0
- data/test/standalone/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/standalone/config/initializers/inflections.rb +16 -0
- data/test/standalone/config/initializers/mime_types.rb +7 -0
- data/test/standalone/config/initializers/rails_db.rb +23 -0
- data/test/standalone/config/initializers/session_store.rb +3 -0
- data/test/standalone/config/initializers/wrap_parameters.rb +14 -0
- data/test/standalone/config/locales/en.yml +23 -0
- data/test/standalone/config/routes.rb +5 -0
- data/test/standalone/config/secrets.yml +22 -0
- data/test/standalone/public/404.html +67 -0
- data/test/standalone/public/422.html +67 -0
- data/test/standalone/public/500.html +66 -0
- data/test/standalone/public/favicon.ico +0 -0
- data/test/table_test.rb +51 -0
- data/test/tables_helper_test.rb +35 -0
- data/test/test_helper.rb +19 -0
- data/test/test_sql_mysql.sql +12 -0
- data/test/test_sql_postgres.sql +12 -0
- data/test/test_sql_sqlite.sql +5 -0
- metadata +1355 -0
|
File without changes
|
|
@@ -0,0 +1,3217 @@
|
|
|
1
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "accounts"[0m
|
|
2
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
|
3
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "users_count" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
4
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "comments"[0m
|
|
5
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
6
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "contacts"[0m
|
|
7
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "message" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
8
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_contacts_on_name_and_email" ON "contacts" ("name", "email")[0m
|
|
9
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "legacy_accounts"[0m
|
|
10
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "legacy_accounts" ("uuid" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)[0m
|
|
11
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "payments"[0m
|
|
12
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal, "project_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
13
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_payments_on_project_id" ON "payments" ("project_id")[0m
|
|
14
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "projects"[0m
|
|
15
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description_492106" varchar, "description_200949" varchar, "description_180665" varchar, "description_806273" varchar, "description_93256" varchar, "description_191220" varchar, "description_147227" varchar, "description_18924" varchar, "description_280694" varchar, "description_398815" varchar, "description_552891" varchar, "description_30028" varchar, "description_492900" varchar, "description_925333" varchar, "description_418541" varchar, "description_703855" varchar, "description_25680" varchar, "description_273217" varchar, "description_235296" varchar, "description_398291" varchar, "amount_723167" integer, "amount_973995" integer, "amount_10079" integer, "amount_478676" integer, "amount_293483" integer, "amount_99616" integer, "amount_449220" integer, "amount_715853" integer, "amount_235541" integer, "amount_427091" integer, "amount_782579" integer, "amount_358029" integer, "amount_930716" integer, "amount_27449" integer, "amount_935730" integer, "amount_545041" integer, "amount_81780" integer, "amount_206186" integer, "amount_68814" integer, "amount_962381" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime)[0m
|
|
16
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_projects_on_deleted_at" ON "projects" ("deleted_at")[0m
|
|
17
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "projects_users"[0m
|
|
18
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE TABLE "projects_users" ("project_id" integer, "user_id" integer)[0m
|
|
19
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_projects_users_on_project_id" ON "projects_users" ("project_id")[0m
|
|
20
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
21
|
+
FROM sqlite_master
|
|
22
|
+
WHERE name='index_projects_users_on_project_id' AND type='index'
|
|
23
|
+
UNION ALL
|
|
24
|
+
SELECT sql
|
|
25
|
+
FROM sqlite_temp_master
|
|
26
|
+
WHERE name='index_projects_users_on_project_id' AND type='index'
|
|
27
|
+
[0m
|
|
28
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE INDEX "index_projects_users_on_user_id" ON "projects_users" ("user_id")[0m
|
|
29
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "users"[0m
|
|
30
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "age" integer, "salary" decimal, "bio" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "account_id" integer, "dob" date, "active" boolean DEFAULT 't', "type" varchar)[0m
|
|
31
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_users_on_account_id" ON "users" ("account_id")[0m
|
|
32
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
33
|
+
FROM sqlite_master
|
|
34
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
35
|
+
UNION ALL
|
|
36
|
+
SELECT sql
|
|
37
|
+
FROM sqlite_temp_master
|
|
38
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
39
|
+
[0m
|
|
40
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_users_on_name" ON "users" ("name")[0m
|
|
41
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
42
|
+
FROM sqlite_master
|
|
43
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
44
|
+
UNION ALL
|
|
45
|
+
SELECT sql
|
|
46
|
+
FROM sqlite_temp_master
|
|
47
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
48
|
+
[0m
|
|
49
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
50
|
+
FROM sqlite_master
|
|
51
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
52
|
+
UNION ALL
|
|
53
|
+
SELECT sql
|
|
54
|
+
FROM sqlite_temp_master
|
|
55
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
56
|
+
[0m
|
|
57
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_users_on_salary" ON "users" ("salary")[0m
|
|
58
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
|
59
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
60
|
+
[1m[35m (1.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20180528134358)[0m
|
|
61
|
+
[1m[35m (1.2ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
|
|
62
|
+
(20151013203739),
|
|
63
|
+
(20151013203757),
|
|
64
|
+
(20151013204027),
|
|
65
|
+
(20151014074454),
|
|
66
|
+
(20151014074655),
|
|
67
|
+
(20151014152932),
|
|
68
|
+
(20151014183823),
|
|
69
|
+
(20151014184243),
|
|
70
|
+
(20151015145740),
|
|
71
|
+
(20151027192250),
|
|
72
|
+
(20151027223149),
|
|
73
|
+
(20151028191429),
|
|
74
|
+
(20151121125538),
|
|
75
|
+
(20170126124628);
|
|
76
|
+
|
|
77
|
+
[0m
|
|
78
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
|
79
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
|
80
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
81
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2018-09-16 11:55:50.097537"], ["updated_at", "2018-09-16 11:55:50.097537"]]
|
|
82
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
|
83
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
|
84
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
85
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
|
86
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
87
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
88
|
+
------------------------------------
|
|
89
|
+
RailsDbTest: test_verify_access_proc
|
|
90
|
+
------------------------------------
|
|
91
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
92
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
93
|
+
-----------------------
|
|
94
|
+
RailsDbTest: test_truth
|
|
95
|
+
-----------------------
|
|
96
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
97
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
98
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
99
|
+
TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
|
|
100
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
101
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
102
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
103
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
104
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_record_for_this_table:column
|
|
105
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
106
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
107
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
108
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
109
|
+
TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
|
|
110
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
111
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
112
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
113
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
114
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_hash_key_for_this_table
|
|
115
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
116
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
117
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
118
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
119
|
+
TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
|
|
120
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
121
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
122
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
123
|
+
------------------------------------
|
|
124
|
+
DatabaseTest: test_accessible_tables
|
|
125
|
+
------------------------------------
|
|
126
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
127
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
128
|
+
--------------------------
|
|
129
|
+
DatabaseTest: test_adapter
|
|
130
|
+
--------------------------
|
|
131
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
132
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
133
|
+
-------------------------
|
|
134
|
+
DatabaseTest: test_insert
|
|
135
|
+
-------------------------
|
|
136
|
+
[1m[35m (0.6ms)[0m [1m[31mdelete from projects_users[0m
|
|
137
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN delete from projects_users[0m
|
|
138
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
139
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
140
|
+
[1m[35m (0.1ms)[0m [1m[32minsert into projects_users(project_id, user_id) values(1,2)[0m
|
|
141
|
+
[1m[35m (0.2ms)[0m [1m[35mEXPLAIN insert into projects_users(project_id, user_id) values(1,2)[0m
|
|
142
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
143
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
|
144
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
145
|
+
-------------------------
|
|
146
|
+
DatabaseTest: test_tables
|
|
147
|
+
-------------------------
|
|
148
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
149
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
150
|
+
------------------------
|
|
151
|
+
DatabaseTest: test_query
|
|
152
|
+
------------------------
|
|
153
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
154
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
155
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:55:50.302921"], ["updated_at", "2018-09-16 11:55:50.302921"]]
|
|
156
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
157
|
+
[1m[35m (0.0ms)[0m [1m[34mselect count(*) as users_count from users[0m
|
|
158
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select count(*) as users_count from users[0m
|
|
159
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
160
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
161
|
+
--------------------------
|
|
162
|
+
SqlImportTest: test_import
|
|
163
|
+
--------------------------
|
|
164
|
+
[1m[35m (0.1ms)[0m [1m[33mupdate users set age = 11 where id = 1[0m
|
|
165
|
+
[1m[35m (0.0ms)[0m [1m[33mupdate users set age = 22 where id = 2[0m
|
|
166
|
+
[1m[35m (0.0ms)[0m [1m[33mupdate users set age = 33 where id = 3[0m
|
|
167
|
+
[1m[35m (0.3ms)[0m [1m[35m
|
|
168
|
+
CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));[0m
|
|
169
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
170
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
171
|
+
------------------------------------------------------------------
|
|
172
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
|
|
173
|
+
------------------------------------------------------------------
|
|
174
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
175
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:55:50.309230"], ["updated_at", "2018-09-16 11:55:50.309230"]]
|
|
176
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
177
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
178
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (2.5ms)
|
|
179
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
180
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
181
|
+
----------------------------------------------------------------------------
|
|
182
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
|
|
183
|
+
----------------------------------------------------------------------------
|
|
184
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
185
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-16 11:55:50.336103"], ["updated_at", "2018-09-16 11:55:50.336103"]]
|
|
186
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
187
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0[0m
|
|
188
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (0.2ms)
|
|
189
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
190
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
191
|
+
----------------------------------------------------------------------
|
|
192
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
|
|
193
|
+
----------------------------------------------------------------------
|
|
194
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
195
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:55:50.339264"], ["updated_at", "2018-09-16 11:55:50.339264"]]
|
|
196
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
197
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
198
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.8ms)
|
|
199
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
200
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
201
|
+
--------------------------------------------------------------------------------
|
|
202
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
|
|
203
|
+
--------------------------------------------------------------------------------
|
|
204
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
205
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:55:50.362828"], ["updated_at", "2018-09-16 11:55:50.362828"]]
|
|
206
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
207
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
208
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.1ms)
|
|
209
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
210
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
211
|
+
----------------------------------------------
|
|
212
|
+
DashboardControllerTest: test_should_get_index
|
|
213
|
+
----------------------------------------------
|
|
214
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
215
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "accounts"[0m
|
|
216
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
217
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
218
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:55:50.492227"], ["updated_at", "2018-09-16 11:55:50.492227"]]
|
|
219
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
220
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
221
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Edit"], ["created_at", "2018-09-16 11:55:50.493137"], ["updated_at", "2018-09-16 11:55:50.493137"]]
|
|
222
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
223
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
224
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?)[0m [["name", "Customer 1"], ["bio", "this is bio text"], ["created_at", "2018-09-16 11:55:50.500261"], ["updated_at", "2018-09-16 11:55:50.500261"], ["type", "Customer"]]
|
|
225
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
226
|
+
Started GET "/rails/db" for 127.0.0.1 at 2018-09-16 17:55:50 +0600
|
|
227
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
228
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
229
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (521.1ms)
|
|
230
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (3.2ms)
|
|
231
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.2ms)
|
|
232
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.4ms)
|
|
233
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (3.0ms)
|
|
234
|
+
Completed 200 OK in 556ms (Views: 552.7ms | ActiveRecord: 0.1ms)
|
|
235
|
+
Started GET "/rails/db/tables/users" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
236
|
+
Processing by RailsDb::TablesController#show as HTML
|
|
237
|
+
Parameters: {"id"=>"users"}
|
|
238
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application
|
|
239
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.3ms)
|
|
240
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
241
|
+
FROM sqlite_master
|
|
242
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
243
|
+
UNION ALL
|
|
244
|
+
SELECT sql
|
|
245
|
+
FROM sqlite_temp_master
|
|
246
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
247
|
+
[0m
|
|
248
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
249
|
+
FROM sqlite_master
|
|
250
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
251
|
+
UNION ALL
|
|
252
|
+
SELECT sql
|
|
253
|
+
FROM sqlite_temp_master
|
|
254
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
255
|
+
[0m
|
|
256
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
257
|
+
FROM sqlite_master
|
|
258
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
259
|
+
UNION ALL
|
|
260
|
+
SELECT sql
|
|
261
|
+
FROM sqlite_temp_master
|
|
262
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
263
|
+
[0m
|
|
264
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
265
|
+
FROM sqlite_master
|
|
266
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
267
|
+
UNION ALL
|
|
268
|
+
SELECT sql
|
|
269
|
+
FROM sqlite_temp_master
|
|
270
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
271
|
+
[0m
|
|
272
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
273
|
+
FROM sqlite_master
|
|
274
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
275
|
+
UNION ALL
|
|
276
|
+
SELECT sql
|
|
277
|
+
FROM sqlite_temp_master
|
|
278
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
279
|
+
[0m
|
|
280
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
281
|
+
FROM sqlite_master
|
|
282
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
283
|
+
UNION ALL
|
|
284
|
+
SELECT sql
|
|
285
|
+
FROM sqlite_temp_master
|
|
286
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
287
|
+
[0m
|
|
288
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_show.html.erb (11.9ms)
|
|
289
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application (14.0ms)
|
|
290
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.5ms)
|
|
291
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.5ms)
|
|
292
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.4ms)
|
|
293
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (1.3ms)
|
|
294
|
+
Completed 200 OK in 26ms (Views: 20.0ms | ActiveRecord: 4.2ms)
|
|
295
|
+
Started GET "/rails/db/tables/users/data" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
296
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
297
|
+
Parameters: {"table_id"=>"users"}
|
|
298
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
299
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
300
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.1ms)
|
|
301
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (49.5ms)
|
|
302
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (12.8ms)
|
|
303
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
304
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (2.9ms)
|
|
305
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
306
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
307
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
308
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
309
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.4ms)
|
|
310
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (123.4ms)
|
|
311
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (125.5ms)
|
|
312
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.4ms)
|
|
313
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.1ms)
|
|
314
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
315
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
316
|
+
Completed 200 OK in 149ms (Views: 127.9ms | ActiveRecord: 3.1ms)
|
|
317
|
+
Started GET "/rails/db/sql" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
318
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
319
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
320
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
321
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.7ms)
|
|
322
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (7.9ms)
|
|
323
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
324
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
325
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
326
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
327
|
+
Completed 200 OK in 17ms (Views: 13.1ms | ActiveRecord: 1.7ms)
|
|
328
|
+
Started GET "/rails/db/import" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
329
|
+
Processing by RailsDb::SqlController#import as HTML
|
|
330
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application
|
|
331
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_import_sample.html.erb (0.3ms)
|
|
332
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application (3.3ms)
|
|
333
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
334
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
335
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
336
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.9ms)
|
|
337
|
+
Completed 200 OK in 10ms (Views: 7.5ms | ActiveRecord: 0.1ms)
|
|
338
|
+
Started GET "/rails/db/data-table" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
339
|
+
Processing by RailsDb::DashboardController#data_table as HTML
|
|
340
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application
|
|
341
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application (1.4ms)
|
|
342
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
343
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
344
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
345
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
346
|
+
Completed 200 OK in 8ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
|
347
|
+
Started GET "/" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
348
|
+
Processing by HomeController#index as HTML
|
|
349
|
+
Rendering home/index.html.erb within layouts/application
|
|
350
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0[0m
|
|
351
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (0.9ms)
|
|
352
|
+
[1m[35m (0.1ms)[0m [1m[34mselect id, name, age from users order by age desc limit 10[0m
|
|
353
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.6ms)
|
|
354
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
355
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
356
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "accounts"[0m
|
|
357
|
+
Rendered home/index.html.erb within layouts/application (9.1ms)
|
|
358
|
+
Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.6ms)
|
|
359
|
+
Started GET "/rails/db/tables/users/data?sort_column=id&sort_order=desc" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
360
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
361
|
+
Parameters: {"sort_column"=>"id", "sort_order"=>"desc", "table_id"=>"users"}
|
|
362
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
363
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
364
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
365
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (8.0ms)
|
|
366
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (7.6ms)
|
|
367
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
368
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.4ms)
|
|
369
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.4ms)
|
|
370
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
371
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
372
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
373
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.0ms)
|
|
374
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (48.0ms)
|
|
375
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (48.1ms)
|
|
376
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.8ms)
|
|
377
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
378
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
379
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
380
|
+
Completed 200 OK in 61ms (Views: 49.3ms | ActiveRecord: 2.5ms)
|
|
381
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
382
|
+
Started GET "/rails/db/tables/users/destroy?pk_id=1" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
383
|
+
Processing by RailsDb::TablesController#destroy as HTML
|
|
384
|
+
Parameters: {"pk_id"=>"1", "table_id"=>"users"}
|
|
385
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
386
|
+
[1m[35m (0.1ms)[0m [1m[31mDELETE FROM users WHERE id = '1';[0m
|
|
387
|
+
Redirected to http://www.example.com/rails/db/tables/users/data
|
|
388
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.4ms)
|
|
389
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
390
|
+
Started GET "/rails/db/tables/users/csv" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
391
|
+
Processing by RailsDb::TablesController#csv as HTML
|
|
392
|
+
Parameters: {"table_id"=>"users"}
|
|
393
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
394
|
+
Rendering text template
|
|
395
|
+
Rendered text template (0.0ms)
|
|
396
|
+
Sent data users.csv (2.3ms)
|
|
397
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.3ms)
|
|
398
|
+
Started GET "/rails/db/standalone" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
399
|
+
Processing by RailsDb::DashboardController#standalone as HTML
|
|
400
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application
|
|
401
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application (1.2ms)
|
|
402
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
403
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
404
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
405
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
406
|
+
Completed 200 OK in 8ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
|
407
|
+
Started GET "/rails/db/tables/users/xlsx.xls" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
408
|
+
Processing by RailsDb::TablesController#xlsx as XLS
|
|
409
|
+
Parameters: {"table_id"=>"users"}
|
|
410
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/table.xls.axlsx
|
|
411
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
412
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/table.xls.axlsx (9.4ms)
|
|
413
|
+
Rendering text template
|
|
414
|
+
Rendered text template (0.0ms)
|
|
415
|
+
Sent data users.xlsx (0.3ms)
|
|
416
|
+
Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.3ms)
|
|
417
|
+
Started GET "/rails/db/sql?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
418
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
419
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
420
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
421
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
422
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
423
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
424
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.5ms)
|
|
425
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_explain.html.erb (0.5ms)
|
|
426
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_results.html.erb (3.5ms)
|
|
427
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (9.9ms)
|
|
428
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
429
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
430
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
431
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
432
|
+
Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 1.8ms)
|
|
433
|
+
Started POST "/rails/db/sql-csv.csv?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
434
|
+
Processing by RailsDb::SqlController#csv as CSV
|
|
435
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
436
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
437
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
438
|
+
Rendering text template
|
|
439
|
+
Rendered text template (0.0ms)
|
|
440
|
+
Sent data results.csv (0.3ms)
|
|
441
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
|
442
|
+
Started POST "/rails/db/sql-xls.xls?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
443
|
+
Processing by RailsDb::SqlController#xls as XLS
|
|
444
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
445
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
446
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
447
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/xls.xls.axlsx
|
|
448
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/xls.xls.axlsx (5.0ms)
|
|
449
|
+
Rendering text template
|
|
450
|
+
Rendered text template (0.0ms)
|
|
451
|
+
Sent data results.xlsx (0.3ms)
|
|
452
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.2ms)
|
|
453
|
+
Started GET "/rails/db/tables/users/edit?pk_id=2" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
454
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
455
|
+
Parameters: {"pk_id"=>"2", "table_id"=>"users"}
|
|
456
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
457
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
458
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb
|
|
459
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_edit.html.erb (23.5ms)
|
|
460
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb (27.5ms)
|
|
461
|
+
Completed 200 OK in 55ms (Views: 34.2ms | ActiveRecord: 2.5ms)
|
|
462
|
+
Started PUT "/rails/db/tables/users/update?pk_id=2" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
463
|
+
Processing by RailsDb::TablesController#update as JS
|
|
464
|
+
Parameters: {"record"=>{"name"=>"JOHN"}, "pk_id"=>"2", "table_id"=>"users"}
|
|
465
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
466
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
467
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
468
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "JOHN"], ["updated_at", "2018-09-16 11:55:51.563238"], ["id", 2]]
|
|
469
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
470
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb
|
|
471
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (2.3ms)
|
|
472
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb (5.5ms)
|
|
473
|
+
Completed 200 OK in 24ms (Views: 5.1ms | ActiveRecord: 1.2ms)
|
|
474
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
475
|
+
Started GET "/rails/db/tables/users/new" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
476
|
+
Processing by RailsDb::TablesController#new as JS
|
|
477
|
+
Parameters: {"table_id"=>"users"}
|
|
478
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
479
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/new.js.erb
|
|
480
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_new.html.erb (11.2ms)
|
|
481
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/new.js.erb (31.9ms)
|
|
482
|
+
Completed 200 OK in 63ms (Views: 30.2ms | ActiveRecord: 2.3ms)
|
|
483
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
484
|
+
Started POST "/rails/db/tables/users/create" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
485
|
+
Processing by RailsDb::TablesController#create as JS
|
|
486
|
+
Parameters: {"record"=>{"name"=>"XXX"}, "table_id"=>"users"}
|
|
487
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
488
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
489
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "XXX"], ["created_at", "2018-09-16 11:55:51.659600"], ["updated_at", "2018-09-16 11:55:51.659600"]]
|
|
490
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
491
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/create.js.erb
|
|
492
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.3ms)
|
|
493
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (8.9ms)
|
|
494
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (7.9ms)
|
|
495
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
496
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
497
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.5ms)
|
|
498
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.5ms)
|
|
499
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
500
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
501
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.3ms)
|
|
502
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (56.1ms)
|
|
503
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/create.js.erb (60.4ms)
|
|
504
|
+
Completed 200 OK in 93ms (Views: 58.2ms | ActiveRecord: 3.1ms)
|
|
505
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
506
|
+
Started GET "/rails/db/tables/users/edit?pk_id=3" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
507
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
508
|
+
Parameters: {"pk_id"=>"3", "table_id"=>"users"}
|
|
509
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
510
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
511
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb
|
|
512
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_edit.html.erb (12.2ms)
|
|
513
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb (13.4ms)
|
|
514
|
+
Completed 200 OK in 27ms (Views: 12.0ms | ActiveRecord: 2.1ms)
|
|
515
|
+
Started PUT "/rails/db/tables/users/update?pk_id=3" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
516
|
+
Processing by RailsDb::TablesController#update as JS
|
|
517
|
+
Parameters: {"record"=>{"name"=>"STI"}, "pk_id"=>"3", "table_id"=>"users"}
|
|
518
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
519
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
520
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
521
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "STI"], ["updated_at", "2018-09-16 11:55:51.780734"], ["id", 3]]
|
|
522
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
523
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb
|
|
524
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (2.2ms)
|
|
525
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb (2.8ms)
|
|
526
|
+
Completed 200 OK in 19ms (Views: 2.3ms | ActiveRecord: 1.3ms)
|
|
527
|
+
[1m[36mCustomer Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
528
|
+
Started GET "/admin/tools/db" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
529
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
530
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
531
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (0.4ms)
|
|
532
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
533
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
534
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
535
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
536
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
|
|
537
|
+
Started GET "/admin/tools/db/sql" for 127.0.0.1 at 2018-09-16 17:55:51 +0600
|
|
538
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
539
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
540
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
541
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.5ms)
|
|
542
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (6.1ms)
|
|
543
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
544
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
545
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
546
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
547
|
+
Completed 200 OK in 11ms (Views: 8.2ms | ActiveRecord: 2.3ms)
|
|
548
|
+
[1m[35m (1.9ms)[0m [1m[31mrollback transaction[0m
|
|
549
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
550
|
+
----------------------
|
|
551
|
+
TableTest: test_delete
|
|
552
|
+
----------------------
|
|
553
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
554
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
555
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:55:51.810339"], ["updated_at", "2018-09-16 11:55:51.810339"]]
|
|
556
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
557
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
558
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "john"], ["created_at", "2018-09-16 11:55:51.811630"], ["updated_at", "2018-09-16 11:55:51.811630"]]
|
|
559
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
560
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
561
|
+
[1m[35m (0.1ms)[0m [1m[31mDELETE FROM users WHERE id = 1;[0m
|
|
562
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
563
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "igor"]]
|
|
564
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "john"]]
|
|
565
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
566
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
567
|
+
----------------------
|
|
568
|
+
TableTest: test_to_csv
|
|
569
|
+
----------------------
|
|
570
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
571
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:55:51.816101"], ["updated_at", "2018-09-16 11:55:51.816101"]]
|
|
572
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
573
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
574
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
575
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
576
|
+
-----------------------
|
|
577
|
+
TableTest: test_columns
|
|
578
|
+
-----------------------
|
|
579
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
580
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
581
|
+
------------------------
|
|
582
|
+
TableTest: test_as_table
|
|
583
|
+
------------------------
|
|
584
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
585
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
586
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:55:51.821036"], ["updated_at", "2018-09-16 11:55:51.821036"]]
|
|
587
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
588
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
589
|
+
[1m[36m Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
|
|
590
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
591
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
592
|
+
---------------------------
|
|
593
|
+
TableTest: test_primary_key
|
|
594
|
+
---------------------------
|
|
595
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
596
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
597
|
+
------------------------
|
|
598
|
+
TableTest: test_truncate
|
|
599
|
+
------------------------
|
|
600
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
601
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
602
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:55:51.850277"], ["updated_at", "2018-09-16 11:55:51.850277"]]
|
|
603
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
604
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
605
|
+
[1m[35m (0.0ms)[0m [1m[31mDELETE FROM users;[0m
|
|
606
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
607
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
608
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
609
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
610
|
+
----------------------------------------------
|
|
611
|
+
DashboardControllerTest: test_should_get_index
|
|
612
|
+
----------------------------------------------
|
|
613
|
+
[1m[35mSQL (1.7ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
614
|
+
[1m[35mSQL (0.5ms)[0m [1m[31mDELETE FROM "accounts"[0m
|
|
615
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
616
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
617
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:58:56.204208"], ["updated_at", "2018-09-16 11:58:56.204208"]]
|
|
618
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
619
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
620
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Edit"], ["created_at", "2018-09-16 11:58:56.205823"], ["updated_at", "2018-09-16 11:58:56.205823"]]
|
|
621
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
622
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
623
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?)[0m [["name", "Customer 1"], ["bio", "this is bio text"], ["created_at", "2018-09-16 11:58:56.213458"], ["updated_at", "2018-09-16 11:58:56.213458"], ["type", "Customer"]]
|
|
624
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
625
|
+
Started GET "/rails/db" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
626
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
627
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
628
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (193.6ms)
|
|
629
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (4.2ms)
|
|
630
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.2ms)
|
|
631
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.5ms)
|
|
632
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (3.4ms)
|
|
633
|
+
Completed 200 OK in 232ms (Views: 229.8ms | ActiveRecord: 0.1ms)
|
|
634
|
+
Started GET "/rails/db/tables/users" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
635
|
+
Processing by RailsDb::TablesController#show as HTML
|
|
636
|
+
Parameters: {"id"=>"users"}
|
|
637
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application
|
|
638
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.3ms)
|
|
639
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
640
|
+
FROM sqlite_master
|
|
641
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
642
|
+
UNION ALL
|
|
643
|
+
SELECT sql
|
|
644
|
+
FROM sqlite_temp_master
|
|
645
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
646
|
+
[0m
|
|
647
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
648
|
+
FROM sqlite_master
|
|
649
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
650
|
+
UNION ALL
|
|
651
|
+
SELECT sql
|
|
652
|
+
FROM sqlite_temp_master
|
|
653
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
654
|
+
[0m
|
|
655
|
+
[1m[35m (0.0ms)[0m [1m[34m SELECT sql
|
|
656
|
+
FROM sqlite_master
|
|
657
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
658
|
+
UNION ALL
|
|
659
|
+
SELECT sql
|
|
660
|
+
FROM sqlite_temp_master
|
|
661
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
662
|
+
[0m
|
|
663
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
664
|
+
FROM sqlite_master
|
|
665
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
666
|
+
UNION ALL
|
|
667
|
+
SELECT sql
|
|
668
|
+
FROM sqlite_temp_master
|
|
669
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
670
|
+
[0m
|
|
671
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
672
|
+
FROM sqlite_master
|
|
673
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
674
|
+
UNION ALL
|
|
675
|
+
SELECT sql
|
|
676
|
+
FROM sqlite_temp_master
|
|
677
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
678
|
+
[0m
|
|
679
|
+
[1m[35m (0.0ms)[0m [1m[34m SELECT sql
|
|
680
|
+
FROM sqlite_master
|
|
681
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
682
|
+
UNION ALL
|
|
683
|
+
SELECT sql
|
|
684
|
+
FROM sqlite_temp_master
|
|
685
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
686
|
+
[0m
|
|
687
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_show.html.erb (11.9ms)
|
|
688
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application (15.1ms)
|
|
689
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.1ms)
|
|
690
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.2ms)
|
|
691
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
692
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.8ms)
|
|
693
|
+
Completed 200 OK in 28ms (Views: 21.0ms | ActiveRecord: 3.9ms)
|
|
694
|
+
Started GET "/rails/db/tables/users/data" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
695
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
696
|
+
Parameters: {"table_id"=>"users"}
|
|
697
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
698
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
699
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
700
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (34.8ms)
|
|
701
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (9.0ms)
|
|
702
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
703
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (3.8ms)
|
|
704
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.4ms)
|
|
705
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.3ms)
|
|
706
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
707
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
708
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.3ms)
|
|
709
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (89.5ms)
|
|
710
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (92.0ms)
|
|
711
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
712
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
713
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
714
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
715
|
+
Completed 200 OK in 119ms (Views: 93.1ms | ActiveRecord: 3.2ms)
|
|
716
|
+
Started GET "/rails/db/sql" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
717
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
718
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
719
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
720
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.5ms)
|
|
721
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (9.2ms)
|
|
722
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
723
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
724
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
725
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
726
|
+
Completed 200 OK in 19ms (Views: 13.9ms | ActiveRecord: 2.3ms)
|
|
727
|
+
Started GET "/rails/db/import" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
728
|
+
Processing by RailsDb::SqlController#import as HTML
|
|
729
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application
|
|
730
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_import_sample.html.erb (0.3ms)
|
|
731
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application (3.0ms)
|
|
732
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
733
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
734
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
735
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
736
|
+
Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.1ms)
|
|
737
|
+
Started GET "/rails/db/data-table" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
738
|
+
Processing by RailsDb::DashboardController#data_table as HTML
|
|
739
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application
|
|
740
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application (1.8ms)
|
|
741
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.3ms)
|
|
742
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
743
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
744
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.9ms)
|
|
745
|
+
Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.1ms)
|
|
746
|
+
Started GET "/" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
747
|
+
Processing by HomeController#index as HTML
|
|
748
|
+
Rendering home/index.html.erb within layouts/application
|
|
749
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0[0m
|
|
750
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (1.7ms)
|
|
751
|
+
[1m[35m (0.2ms)[0m [1m[34mselect id, name, age from users order by age desc limit 10[0m
|
|
752
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (1.0ms)
|
|
753
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
754
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
755
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "accounts"[0m
|
|
756
|
+
Rendered home/index.html.erb within layouts/application (11.9ms)
|
|
757
|
+
Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.9ms)
|
|
758
|
+
Started GET "/rails/db/tables/users/data?sort_column=id&sort_order=desc" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
759
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
760
|
+
Parameters: {"sort_column"=>"id", "sort_order"=>"desc", "table_id"=>"users"}
|
|
761
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
762
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
763
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
764
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (8.4ms)
|
|
765
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (7.4ms)
|
|
766
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
767
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.5ms)
|
|
768
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.4ms)
|
|
769
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.3ms)
|
|
770
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
771
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
772
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.0ms)
|
|
773
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (52.5ms)
|
|
774
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (52.6ms)
|
|
775
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.8ms)
|
|
776
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
777
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
778
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
779
|
+
Completed 200 OK in 68ms (Views: 53.9ms | ActiveRecord: 2.6ms)
|
|
780
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
781
|
+
Started GET "/rails/db/tables/users/destroy?pk_id=1" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
782
|
+
Processing by RailsDb::TablesController#destroy as HTML
|
|
783
|
+
Parameters: {"pk_id"=>"1", "table_id"=>"users"}
|
|
784
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
785
|
+
[1m[35m (0.0ms)[0m [1m[31mDELETE FROM users WHERE id = '1';[0m
|
|
786
|
+
Redirected to http://www.example.com/rails/db/tables/users/data
|
|
787
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.4ms)
|
|
788
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
789
|
+
Started GET "/rails/db/tables/users/csv" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
790
|
+
Processing by RailsDb::TablesController#csv as HTML
|
|
791
|
+
Parameters: {"table_id"=>"users"}
|
|
792
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
793
|
+
Rendering text template
|
|
794
|
+
Rendered text template (0.0ms)
|
|
795
|
+
Sent data users.csv (2.8ms)
|
|
796
|
+
Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.2ms)
|
|
797
|
+
Started GET "/rails/db/standalone" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
798
|
+
Processing by RailsDb::DashboardController#standalone as HTML
|
|
799
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application
|
|
800
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application (1.0ms)
|
|
801
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
802
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
803
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
804
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
805
|
+
Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
|
806
|
+
Started GET "/rails/db/tables/users/xlsx.xls" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
807
|
+
Processing by RailsDb::TablesController#xlsx as XLS
|
|
808
|
+
Parameters: {"table_id"=>"users"}
|
|
809
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/table.xls.axlsx
|
|
810
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
811
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/table.xls.axlsx (9.8ms)
|
|
812
|
+
Rendering text template
|
|
813
|
+
Rendered text template (0.0ms)
|
|
814
|
+
Sent data users.xlsx (0.3ms)
|
|
815
|
+
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.4ms)
|
|
816
|
+
Started GET "/rails/db/sql?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
817
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
818
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
819
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
820
|
+
[1m[35m (0.2ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
821
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
822
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
823
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.2ms)
|
|
824
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_explain.html.erb (0.5ms)
|
|
825
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_results.html.erb (3.6ms)
|
|
826
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (10.7ms)
|
|
827
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
828
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
829
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
830
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
831
|
+
Completed 200 OK in 15ms (Views: 12.8ms | ActiveRecord: 2.3ms)
|
|
832
|
+
Started POST "/rails/db/sql-csv.csv?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
833
|
+
Processing by RailsDb::SqlController#csv as CSV
|
|
834
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
835
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
836
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
837
|
+
Rendering text template
|
|
838
|
+
Rendered text template (0.0ms)
|
|
839
|
+
Sent data results.csv (0.4ms)
|
|
840
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.2ms)
|
|
841
|
+
Started POST "/rails/db/sql-xls.xls?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
842
|
+
Processing by RailsDb::SqlController#xls as XLS
|
|
843
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
844
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
845
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
846
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/xls.xls.axlsx
|
|
847
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/xls.xls.axlsx (6.5ms)
|
|
848
|
+
Rendering text template
|
|
849
|
+
Rendered text template (0.0ms)
|
|
850
|
+
Sent data results.xlsx (0.3ms)
|
|
851
|
+
Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.2ms)
|
|
852
|
+
Started GET "/rails/db/tables/users/edit?pk_id=2" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
853
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
854
|
+
Parameters: {"pk_id"=>"2", "table_id"=>"users"}
|
|
855
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
856
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
857
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb
|
|
858
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_edit.html.erb (24.0ms)
|
|
859
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb (28.3ms)
|
|
860
|
+
Completed 200 OK in 70ms (Views: 35.0ms | ActiveRecord: 2.5ms)
|
|
861
|
+
Started PUT "/rails/db/tables/users/update?pk_id=2" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
862
|
+
Processing by RailsDb::TablesController#update as JS
|
|
863
|
+
Parameters: {"record"=>{"name"=>"JOHN"}, "pk_id"=>"2", "table_id"=>"users"}
|
|
864
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
865
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
866
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
867
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "JOHN"], ["updated_at", "2018-09-16 11:58:56.964649"], ["id", 2]]
|
|
868
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
869
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb
|
|
870
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (2.2ms)
|
|
871
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb (5.4ms)
|
|
872
|
+
Completed 200 OK in 25ms (Views: 5.1ms | ActiveRecord: 1.5ms)
|
|
873
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
874
|
+
Started GET "/rails/db/tables/users/new" for 127.0.0.1 at 2018-09-16 17:58:56 +0600
|
|
875
|
+
Processing by RailsDb::TablesController#new as JS
|
|
876
|
+
Parameters: {"table_id"=>"users"}
|
|
877
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
878
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/new.js.erb
|
|
879
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_new.html.erb (8.3ms)
|
|
880
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/new.js.erb (27.8ms)
|
|
881
|
+
Completed 200 OK in 59ms (Views: 26.7ms | ActiveRecord: 1.7ms)
|
|
882
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
883
|
+
Started POST "/rails/db/tables/users/create" for 127.0.0.1 at 2018-09-16 17:58:57 +0600
|
|
884
|
+
Processing by RailsDb::TablesController#create as JS
|
|
885
|
+
Parameters: {"record"=>{"name"=>"XXX"}, "table_id"=>"users"}
|
|
886
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
887
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
888
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "XXX"], ["created_at", "2018-09-16 11:58:57.052568"], ["updated_at", "2018-09-16 11:58:57.052568"]]
|
|
889
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
890
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/create.js.erb
|
|
891
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.3ms)
|
|
892
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (9.2ms)
|
|
893
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (9.0ms)
|
|
894
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
895
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
896
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.4ms)
|
|
897
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (2.3ms)
|
|
898
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
899
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
900
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.4ms)
|
|
901
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (66.8ms)
|
|
902
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/create.js.erb (71.0ms)
|
|
903
|
+
Completed 200 OK in 94ms (Views: 68.7ms | ActiveRecord: 3.3ms)
|
|
904
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
905
|
+
Started GET "/rails/db/tables/users/edit?pk_id=3" for 127.0.0.1 at 2018-09-16 17:58:57 +0600
|
|
906
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
907
|
+
Parameters: {"pk_id"=>"3", "table_id"=>"users"}
|
|
908
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
909
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
910
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb
|
|
911
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_edit.html.erb (14.0ms)
|
|
912
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb (16.0ms)
|
|
913
|
+
Completed 200 OK in 30ms (Views: 14.4ms | ActiveRecord: 2.3ms)
|
|
914
|
+
Started PUT "/rails/db/tables/users/update?pk_id=3" for 127.0.0.1 at 2018-09-16 17:58:57 +0600
|
|
915
|
+
Processing by RailsDb::TablesController#update as JS
|
|
916
|
+
Parameters: {"record"=>{"name"=>"STI"}, "pk_id"=>"3", "table_id"=>"users"}
|
|
917
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
918
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
919
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
920
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "STI"], ["updated_at", "2018-09-16 11:58:57.182778"], ["id", 3]]
|
|
921
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
922
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb
|
|
923
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
924
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb (2.2ms)
|
|
925
|
+
Completed 200 OK in 20ms (Views: 1.8ms | ActiveRecord: 1.2ms)
|
|
926
|
+
[1m[36mCustomer Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
927
|
+
Started GET "/admin/tools/db" for 127.0.0.1 at 2018-09-16 17:58:57 +0600
|
|
928
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
929
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
930
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (0.4ms)
|
|
931
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.3ms)
|
|
932
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
933
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
934
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.8ms)
|
|
935
|
+
Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
|
936
|
+
Started GET "/admin/tools/db/sql" for 127.0.0.1 at 2018-09-16 17:58:57 +0600
|
|
937
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
938
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
939
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
940
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.2ms)
|
|
941
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (5.1ms)
|
|
942
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
943
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
944
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
945
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
946
|
+
Completed 200 OK in 10ms (Views: 7.6ms | ActiveRecord: 1.8ms)
|
|
947
|
+
[1m[35m (1.9ms)[0m [1m[31mrollback transaction[0m
|
|
948
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
949
|
+
------------------------
|
|
950
|
+
TableTest: test_as_table
|
|
951
|
+
------------------------
|
|
952
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
953
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
954
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:58:57.210492"], ["updated_at", "2018-09-16 11:58:57.210492"]]
|
|
955
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
956
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
957
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
|
|
958
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
959
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
960
|
+
-----------------------
|
|
961
|
+
TableTest: test_columns
|
|
962
|
+
-----------------------
|
|
963
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
964
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
965
|
+
----------------------
|
|
966
|
+
TableTest: test_delete
|
|
967
|
+
----------------------
|
|
968
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
969
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
970
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:58:57.228686"], ["updated_at", "2018-09-16 11:58:57.228686"]]
|
|
971
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
972
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
973
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "john"], ["created_at", "2018-09-16 11:58:57.230053"], ["updated_at", "2018-09-16 11:58:57.230053"]]
|
|
974
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
975
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
976
|
+
[1m[35m (0.1ms)[0m [1m[31mDELETE FROM users WHERE id = 1;[0m
|
|
977
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
978
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "igor"]]
|
|
979
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "john"]]
|
|
980
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
|
981
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
982
|
+
---------------------------
|
|
983
|
+
TableTest: test_primary_key
|
|
984
|
+
---------------------------
|
|
985
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
986
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
987
|
+
----------------------
|
|
988
|
+
TableTest: test_to_csv
|
|
989
|
+
----------------------
|
|
990
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
991
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:58:57.238411"], ["updated_at", "2018-09-16 11:58:57.238411"]]
|
|
992
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
993
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
994
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
995
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
996
|
+
------------------------
|
|
997
|
+
TableTest: test_truncate
|
|
998
|
+
------------------------
|
|
999
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1000
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1001
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:58:57.241889"], ["updated_at", "2018-09-16 11:58:57.241889"]]
|
|
1002
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1003
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1004
|
+
[1m[35m (0.0ms)[0m [1m[31mDELETE FROM users;[0m
|
|
1005
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1006
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1007
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1008
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
1009
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_record_for_this_table:column
|
|
1010
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
1011
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
|
1012
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1013
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
1014
|
+
TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
|
|
1015
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
1016
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1017
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1018
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
1019
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_hash_key_for_this_table
|
|
1020
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
1021
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1022
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
|
1023
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
1024
|
+
TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
|
|
1025
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
1026
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1027
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1028
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
1029
|
+
TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
|
|
1030
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
1031
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1032
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1033
|
+
----------------------------------------------------------------------
|
|
1034
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
|
|
1035
|
+
----------------------------------------------------------------------
|
|
1036
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1037
|
+
[1m[35mSQL (1.0ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:58:57.259173"], ["updated_at", "2018-09-16 11:58:57.259173"]]
|
|
1038
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1039
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
1040
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (1.1ms)
|
|
1041
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
|
1042
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1043
|
+
--------------------------------------------------------------------------------
|
|
1044
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
|
|
1045
|
+
--------------------------------------------------------------------------------
|
|
1046
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1047
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:58:57.288255"], ["updated_at", "2018-09-16 11:58:57.288255"]]
|
|
1048
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1049
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
1050
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.2ms)
|
|
1051
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1052
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1053
|
+
----------------------------------------------------------------------------
|
|
1054
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
|
|
1055
|
+
----------------------------------------------------------------------------
|
|
1056
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1057
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-16 11:58:57.291591"], ["updated_at", "2018-09-16 11:58:57.291591"]]
|
|
1058
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1059
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0[0m
|
|
1060
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (1.1ms)
|
|
1061
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1062
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1063
|
+
------------------------------------------------------------------
|
|
1064
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
|
|
1065
|
+
------------------------------------------------------------------
|
|
1066
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1067
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:58:57.317634"], ["updated_at", "2018-09-16 11:58:57.317634"]]
|
|
1068
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1069
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
1070
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (1.1ms)
|
|
1071
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1072
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1073
|
+
------------------------
|
|
1074
|
+
DatabaseTest: test_query
|
|
1075
|
+
------------------------
|
|
1076
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1077
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1078
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:58:57.322205"], ["updated_at", "2018-09-16 11:58:57.322205"]]
|
|
1079
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1080
|
+
[1m[35m (0.0ms)[0m [1m[34mselect count(*) as users_count from users[0m
|
|
1081
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select count(*) as users_count from users[0m
|
|
1082
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1083
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1084
|
+
-------------------------
|
|
1085
|
+
DatabaseTest: test_tables
|
|
1086
|
+
-------------------------
|
|
1087
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1088
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1089
|
+
------------------------------------
|
|
1090
|
+
DatabaseTest: test_accessible_tables
|
|
1091
|
+
------------------------------------
|
|
1092
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1093
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1094
|
+
--------------------------
|
|
1095
|
+
DatabaseTest: test_adapter
|
|
1096
|
+
--------------------------
|
|
1097
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1098
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1099
|
+
-------------------------
|
|
1100
|
+
DatabaseTest: test_insert
|
|
1101
|
+
-------------------------
|
|
1102
|
+
[1m[35m (1.1ms)[0m [1m[31mdelete from projects_users[0m
|
|
1103
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN delete from projects_users[0m
|
|
1104
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1105
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
1106
|
+
[1m[35m (0.0ms)[0m [1m[32minsert into projects_users(project_id, user_id) values(1,2)[0m
|
|
1107
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN insert into projects_users(project_id, user_id) values(1,2)[0m
|
|
1108
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
1109
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1110
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1111
|
+
--------------------------
|
|
1112
|
+
SqlImportTest: test_import
|
|
1113
|
+
--------------------------
|
|
1114
|
+
[1m[35m (0.1ms)[0m [1m[33mupdate users set age = 11 where id = 1[0m
|
|
1115
|
+
[1m[35m (0.0ms)[0m [1m[33mupdate users set age = 22 where id = 2[0m
|
|
1116
|
+
[1m[35m (0.0ms)[0m [1m[33mupdate users set age = 33 where id = 3[0m
|
|
1117
|
+
[1m[35m (0.3ms)[0m [1m[35m
|
|
1118
|
+
CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));[0m
|
|
1119
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
1120
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1121
|
+
-----------------------
|
|
1122
|
+
RailsDbTest: test_truth
|
|
1123
|
+
-----------------------
|
|
1124
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1125
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1126
|
+
------------------------------------
|
|
1127
|
+
RailsDbTest: test_verify_access_proc
|
|
1128
|
+
------------------------------------
|
|
1129
|
+
[1m[35m (5.6ms)[0m [1m[31mrollback transaction[0m
|
|
1130
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
1131
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1132
|
+
-------------------------
|
|
1133
|
+
DatabaseTest: test_tables
|
|
1134
|
+
-------------------------
|
|
1135
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1136
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1137
|
+
--------------------------
|
|
1138
|
+
DatabaseTest: test_adapter
|
|
1139
|
+
--------------------------
|
|
1140
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1141
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1142
|
+
-------------------------
|
|
1143
|
+
DatabaseTest: test_insert
|
|
1144
|
+
-------------------------
|
|
1145
|
+
[1m[35m (1.4ms)[0m [1m[31mdelete from projects_users[0m
|
|
1146
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN delete from projects_users[0m
|
|
1147
|
+
[1m[35mSQL (1.3ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1148
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
1149
|
+
[1m[35m (0.1ms)[0m [1m[32minsert into projects_users(project_id, user_id) values(1,2)[0m
|
|
1150
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN insert into projects_users(project_id, user_id) values(1,2)[0m
|
|
1151
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
1152
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
1153
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1154
|
+
------------------------
|
|
1155
|
+
DatabaseTest: test_query
|
|
1156
|
+
------------------------
|
|
1157
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1158
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1159
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:59:30.549941"], ["updated_at", "2018-09-16 11:59:30.549941"]]
|
|
1160
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1161
|
+
[1m[35m (0.1ms)[0m [1m[34mselect count(*) as users_count from users[0m
|
|
1162
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select count(*) as users_count from users[0m
|
|
1163
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1164
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1165
|
+
------------------------------------
|
|
1166
|
+
DatabaseTest: test_accessible_tables
|
|
1167
|
+
------------------------------------
|
|
1168
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1169
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1170
|
+
------------------------
|
|
1171
|
+
TableTest: test_as_table
|
|
1172
|
+
------------------------
|
|
1173
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1174
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1175
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:59:30.554934"], ["updated_at", "2018-09-16 11:59:30.554934"]]
|
|
1176
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1177
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1178
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
|
|
1179
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
1180
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1181
|
+
-----------------------
|
|
1182
|
+
TableTest: test_columns
|
|
1183
|
+
-----------------------
|
|
1184
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1185
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1186
|
+
----------------------
|
|
1187
|
+
TableTest: test_delete
|
|
1188
|
+
----------------------
|
|
1189
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1190
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1191
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:59:30.574297"], ["updated_at", "2018-09-16 11:59:30.574297"]]
|
|
1192
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1193
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1194
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "john"], ["created_at", "2018-09-16 11:59:30.575418"], ["updated_at", "2018-09-16 11:59:30.575418"]]
|
|
1195
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1196
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1197
|
+
[1m[35m (0.1ms)[0m [1m[31mDELETE FROM users WHERE id = 1;[0m
|
|
1198
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1199
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "igor"]]
|
|
1200
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "john"]]
|
|
1201
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
|
1202
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1203
|
+
----------------------
|
|
1204
|
+
TableTest: test_to_csv
|
|
1205
|
+
----------------------
|
|
1206
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1207
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:59:30.580220"], ["updated_at", "2018-09-16 11:59:30.580220"]]
|
|
1208
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1209
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
1210
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
1211
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1212
|
+
---------------------------
|
|
1213
|
+
TableTest: test_primary_key
|
|
1214
|
+
---------------------------
|
|
1215
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1216
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1217
|
+
------------------------
|
|
1218
|
+
TableTest: test_truncate
|
|
1219
|
+
------------------------
|
|
1220
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1221
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1222
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-16 11:59:30.584952"], ["updated_at", "2018-09-16 11:59:30.584952"]]
|
|
1223
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1224
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1225
|
+
[1m[35m (0.0ms)[0m [1m[31mDELETE FROM users;[0m
|
|
1226
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1227
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
1228
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1229
|
+
--------------------------------------------------------------------------------
|
|
1230
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
|
|
1231
|
+
--------------------------------------------------------------------------------
|
|
1232
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1233
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:59:30.589809"], ["updated_at", "2018-09-16 11:59:30.589809"]]
|
|
1234
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1235
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
1236
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (1.7ms)
|
|
1237
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1238
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1239
|
+
----------------------------------------------------------------------------
|
|
1240
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
|
|
1241
|
+
----------------------------------------------------------------------------
|
|
1242
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1243
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-16 11:59:30.615325"], ["updated_at", "2018-09-16 11:59:30.615325"]]
|
|
1244
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1245
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0[0m
|
|
1246
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (2.3ms)
|
|
1247
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1248
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
1249
|
+
----------------------------------------------------------------------
|
|
1250
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
|
|
1251
|
+
----------------------------------------------------------------------
|
|
1252
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1253
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:59:30.644567"], ["updated_at", "2018-09-16 11:59:30.644567"]]
|
|
1254
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1255
|
+
[1m[35m (0.2ms)[0m [1m[34mselect * from users[0m
|
|
1256
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.3ms)
|
|
1257
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1258
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1259
|
+
------------------------------------------------------------------
|
|
1260
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
|
|
1261
|
+
------------------------------------------------------------------
|
|
1262
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1263
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:59:30.650361"], ["updated_at", "2018-09-16 11:59:30.650361"]]
|
|
1264
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1265
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT * FROM users[0m
|
|
1266
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (3.0ms)
|
|
1267
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
|
1268
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
1269
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
1270
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_hash_key_for_this_table
|
|
1271
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
1272
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1273
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
|
1274
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
1275
|
+
TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
|
|
1276
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
1277
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1278
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1279
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
1280
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_record_for_this_table:column
|
|
1281
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
1282
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1283
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1284
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
1285
|
+
TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
|
|
1286
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
1287
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1288
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1289
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
1290
|
+
TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
|
|
1291
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
1292
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1293
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1294
|
+
--------------------------
|
|
1295
|
+
SqlImportTest: test_import
|
|
1296
|
+
--------------------------
|
|
1297
|
+
[1m[35m (0.1ms)[0m [1m[33mupdate users set age = 11 where id = 1[0m
|
|
1298
|
+
[1m[35m (0.0ms)[0m [1m[33mupdate users set age = 22 where id = 2[0m
|
|
1299
|
+
[1m[35m (0.0ms)[0m [1m[33mupdate users set age = 33 where id = 3[0m
|
|
1300
|
+
[1m[35m (0.3ms)[0m [1m[35m
|
|
1301
|
+
CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));[0m
|
|
1302
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
|
1303
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1304
|
+
----------------------------------------------
|
|
1305
|
+
DashboardControllerTest: test_should_get_index
|
|
1306
|
+
----------------------------------------------
|
|
1307
|
+
[1m[35mSQL (0.5ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1308
|
+
[1m[35mSQL (0.5ms)[0m [1m[31mDELETE FROM "accounts"[0m
|
|
1309
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
1310
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1311
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-16 11:59:30.839211"], ["updated_at", "2018-09-16 11:59:30.839211"]]
|
|
1312
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1313
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1314
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Edit"], ["created_at", "2018-09-16 11:59:30.840551"], ["updated_at", "2018-09-16 11:59:30.840551"]]
|
|
1315
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1316
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1317
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?)[0m [["name", "Customer 1"], ["bio", "this is bio text"], ["created_at", "2018-09-16 11:59:30.848701"], ["updated_at", "2018-09-16 11:59:30.848701"], ["type", "Customer"]]
|
|
1318
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1319
|
+
Started GET "/rails/db" for 127.0.0.1 at 2018-09-16 17:59:30 +0600
|
|
1320
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
1321
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
1322
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (266.2ms)
|
|
1323
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (4.4ms)
|
|
1324
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (2.4ms)
|
|
1325
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.7ms)
|
|
1326
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (8.1ms)
|
|
1327
|
+
Completed 200 OK in 312ms (Views: 309.5ms | ActiveRecord: 0.2ms)
|
|
1328
|
+
Started GET "/rails/db/tables/users" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1329
|
+
Processing by RailsDb::TablesController#show as HTML
|
|
1330
|
+
Parameters: {"id"=>"users"}
|
|
1331
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application
|
|
1332
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.2ms)
|
|
1333
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1334
|
+
FROM sqlite_master
|
|
1335
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
1336
|
+
UNION ALL
|
|
1337
|
+
SELECT sql
|
|
1338
|
+
FROM sqlite_temp_master
|
|
1339
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
1340
|
+
[0m
|
|
1341
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1342
|
+
FROM sqlite_master
|
|
1343
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
1344
|
+
UNION ALL
|
|
1345
|
+
SELECT sql
|
|
1346
|
+
FROM sqlite_temp_master
|
|
1347
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
1348
|
+
[0m
|
|
1349
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1350
|
+
FROM sqlite_master
|
|
1351
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
1352
|
+
UNION ALL
|
|
1353
|
+
SELECT sql
|
|
1354
|
+
FROM sqlite_temp_master
|
|
1355
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
1356
|
+
[0m
|
|
1357
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1358
|
+
FROM sqlite_master
|
|
1359
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
1360
|
+
UNION ALL
|
|
1361
|
+
SELECT sql
|
|
1362
|
+
FROM sqlite_temp_master
|
|
1363
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
1364
|
+
[0m
|
|
1365
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1366
|
+
FROM sqlite_master
|
|
1367
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
1368
|
+
UNION ALL
|
|
1369
|
+
SELECT sql
|
|
1370
|
+
FROM sqlite_temp_master
|
|
1371
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
1372
|
+
[0m
|
|
1373
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1374
|
+
FROM sqlite_master
|
|
1375
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
1376
|
+
UNION ALL
|
|
1377
|
+
SELECT sql
|
|
1378
|
+
FROM sqlite_temp_master
|
|
1379
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
1380
|
+
[0m
|
|
1381
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_show.html.erb (11.1ms)
|
|
1382
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application (14.6ms)
|
|
1383
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.8ms)
|
|
1384
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
1385
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1386
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
1387
|
+
Completed 200 OK in 26ms (Views: 19.3ms | ActiveRecord: 4.0ms)
|
|
1388
|
+
Started GET "/rails/db/tables/users/data" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1389
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
1390
|
+
Parameters: {"table_id"=>"users"}
|
|
1391
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1392
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
1393
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
1394
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (41.9ms)
|
|
1395
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (11.1ms)
|
|
1396
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
1397
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (4.7ms)
|
|
1398
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (3.7ms)
|
|
1399
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.9ms)
|
|
1400
|
+
[1m[35mCACHE (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1401
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1402
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.3ms)
|
|
1403
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (125.3ms)
|
|
1404
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (127.4ms)
|
|
1405
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.6ms)
|
|
1406
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.5ms)
|
|
1407
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1408
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (1.0ms)
|
|
1409
|
+
Completed 200 OK in 148ms (Views: 128.5ms | ActiveRecord: 5.7ms)
|
|
1410
|
+
Started GET "/rails/db/sql" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1411
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
1412
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
1413
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
1414
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (1.0ms)
|
|
1415
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (11.8ms)
|
|
1416
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
1417
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.3ms)
|
|
1418
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1419
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (1.7ms)
|
|
1420
|
+
Completed 200 OK in 25ms (Views: 19.5ms | ActiveRecord: 2.9ms)
|
|
1421
|
+
Started GET "/rails/db/import" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1422
|
+
Processing by RailsDb::SqlController#import as HTML
|
|
1423
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application
|
|
1424
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_import_sample.html.erb (0.4ms)
|
|
1425
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application (4.8ms)
|
|
1426
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.1ms)
|
|
1427
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (2.7ms)
|
|
1428
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1429
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.8ms)
|
|
1430
|
+
Completed 200 OK in 15ms (Views: 11.8ms | ActiveRecord: 0.1ms)
|
|
1431
|
+
Started GET "/rails/db/data-table" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1432
|
+
Processing by RailsDb::DashboardController#data_table as HTML
|
|
1433
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application
|
|
1434
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application (2.6ms)
|
|
1435
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (2.4ms)
|
|
1436
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
1437
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1438
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (1.0ms)
|
|
1439
|
+
Completed 200 OK in 13ms (Views: 9.8ms | ActiveRecord: 0.1ms)
|
|
1440
|
+
Started GET "/" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1441
|
+
Processing by HomeController#index as HTML
|
|
1442
|
+
Rendering home/index.html.erb within layouts/application
|
|
1443
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0[0m
|
|
1444
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (0.9ms)
|
|
1445
|
+
[1m[35m (0.1ms)[0m [1m[34mselect id, name, age from users order by age desc limit 10[0m
|
|
1446
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.6ms)
|
|
1447
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1448
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
1449
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "accounts"[0m
|
|
1450
|
+
Rendered home/index.html.erb within layouts/application (8.9ms)
|
|
1451
|
+
Completed 200 OK in 17ms (Views: 14.2ms | ActiveRecord: 0.7ms)
|
|
1452
|
+
Started GET "/rails/db/tables/users/data?sort_column=id&sort_order=desc" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1453
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
1454
|
+
Parameters: {"sort_column"=>"id", "sort_order"=>"desc", "table_id"=>"users"}
|
|
1455
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1456
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
1457
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
1458
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (8.2ms)
|
|
1459
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (9.2ms)
|
|
1460
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
1461
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.5ms)
|
|
1462
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.5ms)
|
|
1463
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (2.4ms)
|
|
1464
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1465
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1466
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.0ms)
|
|
1467
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (52.9ms)
|
|
1468
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (53.0ms)
|
|
1469
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
1470
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.5ms)
|
|
1471
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1472
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
1473
|
+
Completed 200 OK in 67ms (Views: 55.5ms | ActiveRecord: 3.2ms)
|
|
1474
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1475
|
+
Started GET "/rails/db/tables/users/destroy?pk_id=1" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1476
|
+
Processing by RailsDb::TablesController#destroy as HTML
|
|
1477
|
+
Parameters: {"pk_id"=>"1", "table_id"=>"users"}
|
|
1478
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1479
|
+
[1m[35m (0.1ms)[0m [1m[31mDELETE FROM users WHERE id = '1';[0m
|
|
1480
|
+
Redirected to http://www.example.com/rails/db/tables/users/data
|
|
1481
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.4ms)
|
|
1482
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1483
|
+
Started GET "/rails/db/tables/users/csv" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1484
|
+
Processing by RailsDb::TablesController#csv as HTML
|
|
1485
|
+
Parameters: {"table_id"=>"users"}
|
|
1486
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
1487
|
+
Rendering text template
|
|
1488
|
+
Rendered text template (0.0ms)
|
|
1489
|
+
Sent data users.csv (2.6ms)
|
|
1490
|
+
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.4ms)
|
|
1491
|
+
Started GET "/rails/db/standalone" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1492
|
+
Processing by RailsDb::DashboardController#standalone as HTML
|
|
1493
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application
|
|
1494
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application (1.1ms)
|
|
1495
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
1496
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.1ms)
|
|
1497
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1498
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.9ms)
|
|
1499
|
+
Completed 200 OK in 9ms (Views: 5.7ms | ActiveRecord: 0.1ms)
|
|
1500
|
+
Started GET "/rails/db/tables/users/xlsx.xls" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1501
|
+
Processing by RailsDb::TablesController#xlsx as XLS
|
|
1502
|
+
Parameters: {"table_id"=>"users"}
|
|
1503
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/table.xls.axlsx
|
|
1504
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
1505
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/table.xls.axlsx (11.3ms)
|
|
1506
|
+
Rendering text template
|
|
1507
|
+
Rendered text template (0.0ms)
|
|
1508
|
+
Sent data users.xlsx (0.5ms)
|
|
1509
|
+
Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.4ms)
|
|
1510
|
+
Started GET "/rails/db/sql?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1511
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
1512
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
1513
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
1514
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
1515
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
1516
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
1517
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.7ms)
|
|
1518
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_explain.html.erb (0.6ms)
|
|
1519
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_results.html.erb (10.1ms)
|
|
1520
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (18.7ms)
|
|
1521
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
1522
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
1523
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1524
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
1525
|
+
Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 2.1ms)
|
|
1526
|
+
Started POST "/rails/db/sql-csv.csv?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1527
|
+
Processing by RailsDb::SqlController#csv as CSV
|
|
1528
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
1529
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
1530
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
1531
|
+
Rendering text template
|
|
1532
|
+
Rendered text template (0.0ms)
|
|
1533
|
+
Sent data results.csv (0.3ms)
|
|
1534
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
|
1535
|
+
Started POST "/rails/db/sql-xls.xls?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1536
|
+
Processing by RailsDb::SqlController#xls as XLS
|
|
1537
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
1538
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
1539
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
1540
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/xls.xls.axlsx
|
|
1541
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/xls.xls.axlsx (5.3ms)
|
|
1542
|
+
Rendering text template
|
|
1543
|
+
Rendered text template (0.0ms)
|
|
1544
|
+
Sent data results.xlsx (0.3ms)
|
|
1545
|
+
Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.2ms)
|
|
1546
|
+
Started GET "/rails/db/tables/users/edit?pk_id=2" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1547
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
1548
|
+
Parameters: {"pk_id"=>"2", "table_id"=>"users"}
|
|
1549
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1550
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
1551
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb
|
|
1552
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_edit.html.erb (23.6ms)
|
|
1553
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb (27.8ms)
|
|
1554
|
+
Completed 200 OK in 61ms (Views: 33.6ms | ActiveRecord: 2.3ms)
|
|
1555
|
+
Started PUT "/rails/db/tables/users/update?pk_id=2" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1556
|
+
Processing by RailsDb::TablesController#update as JS
|
|
1557
|
+
Parameters: {"record"=>{"name"=>"JOHN"}, "pk_id"=>"2", "table_id"=>"users"}
|
|
1558
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1559
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
1560
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1561
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "JOHN"], ["updated_at", "2018-09-16 11:59:31.734464"], ["id", 2]]
|
|
1562
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1563
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb
|
|
1564
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (7.1ms)
|
|
1565
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb (17.0ms)
|
|
1566
|
+
Completed 200 OK in 44ms (Views: 15.1ms | ActiveRecord: 3.0ms)
|
|
1567
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
1568
|
+
Started GET "/rails/db/tables/users/new" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1569
|
+
Processing by RailsDb::TablesController#new as JS
|
|
1570
|
+
Parameters: {"table_id"=>"users"}
|
|
1571
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1572
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/new.js.erb
|
|
1573
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_new.html.erb (17.6ms)
|
|
1574
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/new.js.erb (39.2ms)
|
|
1575
|
+
Completed 200 OK in 77ms (Views: 36.9ms | ActiveRecord: 3.0ms)
|
|
1576
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1577
|
+
Started POST "/rails/db/tables/users/create" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1578
|
+
Processing by RailsDb::TablesController#create as JS
|
|
1579
|
+
Parameters: {"record"=>{"name"=>"XXX"}, "table_id"=>"users"}
|
|
1580
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1581
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1582
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "XXX"], ["created_at", "2018-09-16 11:59:31.864887"], ["updated_at", "2018-09-16 11:59:31.864887"]]
|
|
1583
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1584
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/create.js.erb
|
|
1585
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.3ms)
|
|
1586
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (14.1ms)
|
|
1587
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (12.4ms)
|
|
1588
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
1589
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (3.4ms)
|
|
1590
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.7ms)
|
|
1591
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (2.5ms)
|
|
1592
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1593
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1594
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.8ms)
|
|
1595
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (83.4ms)
|
|
1596
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/create.js.erb (88.6ms)
|
|
1597
|
+
Completed 200 OK in 131ms (Views: 84.7ms | ActiveRecord: 5.3ms)
|
|
1598
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1599
|
+
Started GET "/rails/db/tables/users/edit?pk_id=3" for 127.0.0.1 at 2018-09-16 17:59:31 +0600
|
|
1600
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
1601
|
+
Parameters: {"pk_id"=>"3", "table_id"=>"users"}
|
|
1602
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1603
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
1604
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb
|
|
1605
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_edit.html.erb (19.1ms)
|
|
1606
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb (20.7ms)
|
|
1607
|
+
Completed 200 OK in 44ms (Views: 18.7ms | ActiveRecord: 3.0ms)
|
|
1608
|
+
Started PUT "/rails/db/tables/users/update?pk_id=3" for 127.0.0.1 at 2018-09-16 17:59:32 +0600
|
|
1609
|
+
Processing by RailsDb::TablesController#update as JS
|
|
1610
|
+
Parameters: {"record"=>{"name"=>"STI"}, "pk_id"=>"3", "table_id"=>"users"}
|
|
1611
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1612
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
1613
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1614
|
+
[1m[35mSQL (0.4ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "STI"], ["updated_at", "2018-09-16 11:59:32.054666"], ["id", 3]]
|
|
1615
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1616
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb
|
|
1617
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.8ms)
|
|
1618
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb (3.7ms)
|
|
1619
|
+
Completed 200 OK in 37ms (Views: 3.4ms | ActiveRecord: 2.0ms)
|
|
1620
|
+
[1m[36mCustomer Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
1621
|
+
Started GET "/admin/tools/db" for 127.0.0.1 at 2018-09-16 17:59:32 +0600
|
|
1622
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
1623
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
1624
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (0.4ms)
|
|
1625
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
1626
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
1627
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1628
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
1629
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
|
1630
|
+
Started GET "/admin/tools/db/sql" for 127.0.0.1 at 2018-09-16 17:59:32 +0600
|
|
1631
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
1632
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
1633
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
1634
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.8ms)
|
|
1635
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (9.3ms)
|
|
1636
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
1637
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.2ms)
|
|
1638
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1639
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.8ms)
|
|
1640
|
+
Completed 200 OK in 16ms (Views: 11.9ms | ActiveRecord: 3.5ms)
|
|
1641
|
+
[1m[35m (1.8ms)[0m [1m[31mrollback transaction[0m
|
|
1642
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1643
|
+
-----------------------
|
|
1644
|
+
RailsDbTest: test_truth
|
|
1645
|
+
-----------------------
|
|
1646
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1647
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1648
|
+
------------------------------------
|
|
1649
|
+
RailsDbTest: test_verify_access_proc
|
|
1650
|
+
------------------------------------
|
|
1651
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1652
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
1653
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1654
|
+
--------------------------
|
|
1655
|
+
SqlImportTest: test_import
|
|
1656
|
+
--------------------------
|
|
1657
|
+
[1m[35m (0.3ms)[0m [1m[33mupdate users set age = 11 where id = 1[0m
|
|
1658
|
+
[1m[35m (0.1ms)[0m [1m[33mupdate users set age = 22 where id = 2[0m
|
|
1659
|
+
[1m[35m (0.1ms)[0m [1m[33mupdate users set age = 33 where id = 3[0m
|
|
1660
|
+
[1m[35m (0.8ms)[0m [1m[35m
|
|
1661
|
+
CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));[0m
|
|
1662
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
|
1663
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1664
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
1665
|
+
TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
|
|
1666
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
1667
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1668
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1669
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
1670
|
+
TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
|
|
1671
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
1672
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1673
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1674
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
1675
|
+
TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
|
|
1676
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
1677
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1678
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1679
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
1680
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_hash_key_for_this_table
|
|
1681
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
1682
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1683
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1684
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
1685
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_record_for_this_table:column
|
|
1686
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
1687
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1688
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1689
|
+
----------------------
|
|
1690
|
+
TableTest: test_delete
|
|
1691
|
+
----------------------
|
|
1692
|
+
[1m[35mSQL (0.7ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1693
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1694
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 05:02:09.143150"], ["updated_at", "2018-09-17 05:02:09.143150"]]
|
|
1695
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1696
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1697
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "john"], ["created_at", "2018-09-17 05:02:09.144704"], ["updated_at", "2018-09-17 05:02:09.144704"]]
|
|
1698
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1699
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1700
|
+
[1m[35m (0.1ms)[0m [1m[31mDELETE FROM users WHERE id = 1;[0m
|
|
1701
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1702
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "igor"]]
|
|
1703
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "john"]]
|
|
1704
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1705
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1706
|
+
------------------------
|
|
1707
|
+
TableTest: test_truncate
|
|
1708
|
+
------------------------
|
|
1709
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1710
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1711
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 05:02:09.148637"], ["updated_at", "2018-09-17 05:02:09.148637"]]
|
|
1712
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1713
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1714
|
+
[1m[35m (0.0ms)[0m [1m[31mDELETE FROM users;[0m
|
|
1715
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1716
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1717
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1718
|
+
---------------------------
|
|
1719
|
+
TableTest: test_primary_key
|
|
1720
|
+
---------------------------
|
|
1721
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1722
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1723
|
+
-----------------------
|
|
1724
|
+
TableTest: test_columns
|
|
1725
|
+
-----------------------
|
|
1726
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1727
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1728
|
+
------------------------
|
|
1729
|
+
TableTest: test_as_table
|
|
1730
|
+
------------------------
|
|
1731
|
+
[1m[35mSQL (1.5ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1732
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1733
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 05:02:09.154847"], ["updated_at", "2018-09-17 05:02:09.154847"]]
|
|
1734
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1735
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1736
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
|
|
1737
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
1738
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1739
|
+
----------------------
|
|
1740
|
+
TableTest: test_to_csv
|
|
1741
|
+
----------------------
|
|
1742
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1743
|
+
[1m[35mSQL (0.8ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 05:02:09.170252"], ["updated_at", "2018-09-17 05:02:09.170252"]]
|
|
1744
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1745
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT * FROM users[0m
|
|
1746
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
1747
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1748
|
+
-----------------------
|
|
1749
|
+
RailsDbTest: test_truth
|
|
1750
|
+
-----------------------
|
|
1751
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1752
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1753
|
+
------------------------------------
|
|
1754
|
+
RailsDbTest: test_verify_access_proc
|
|
1755
|
+
------------------------------------
|
|
1756
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1757
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1758
|
+
--------------------------
|
|
1759
|
+
DatabaseTest: test_adapter
|
|
1760
|
+
--------------------------
|
|
1761
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
1762
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1763
|
+
-------------------------
|
|
1764
|
+
DatabaseTest: test_insert
|
|
1765
|
+
-------------------------
|
|
1766
|
+
[1m[35m (1.1ms)[0m [1m[31mdelete from projects_users[0m
|
|
1767
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN delete from projects_users[0m
|
|
1768
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1769
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
1770
|
+
[1m[35m (0.0ms)[0m [1m[32minsert into projects_users(project_id, user_id) values(1,2)[0m
|
|
1771
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN insert into projects_users(project_id, user_id) values(1,2)[0m
|
|
1772
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
1773
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1774
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1775
|
+
------------------------
|
|
1776
|
+
DatabaseTest: test_query
|
|
1777
|
+
------------------------
|
|
1778
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1779
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1780
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 05:02:09.182865"], ["updated_at", "2018-09-17 05:02:09.182865"]]
|
|
1781
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1782
|
+
[1m[35m (0.0ms)[0m [1m[34mselect count(*) as users_count from users[0m
|
|
1783
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select count(*) as users_count from users[0m
|
|
1784
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
|
1785
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1786
|
+
-------------------------
|
|
1787
|
+
DatabaseTest: test_tables
|
|
1788
|
+
-------------------------
|
|
1789
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1790
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1791
|
+
------------------------------------
|
|
1792
|
+
DatabaseTest: test_accessible_tables
|
|
1793
|
+
------------------------------------
|
|
1794
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
1795
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1796
|
+
----------------------------------------------------------------------
|
|
1797
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
|
|
1798
|
+
----------------------------------------------------------------------
|
|
1799
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1800
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 05:02:09.187755"], ["updated_at", "2018-09-17 05:02:09.187755"]]
|
|
1801
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1802
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
1803
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (1.9ms)
|
|
1804
|
+
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
|
1805
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
1806
|
+
------------------------------------------------------------------
|
|
1807
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
|
|
1808
|
+
------------------------------------------------------------------
|
|
1809
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1810
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 05:02:09.222466"], ["updated_at", "2018-09-17 05:02:09.222466"]]
|
|
1811
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1812
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
1813
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (1.8ms)
|
|
1814
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1815
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1816
|
+
--------------------------------------------------------------------------------
|
|
1817
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
|
|
1818
|
+
--------------------------------------------------------------------------------
|
|
1819
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1820
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 05:02:09.246752"], ["updated_at", "2018-09-17 05:02:09.246752"]]
|
|
1821
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1822
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
1823
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.1ms)
|
|
1824
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
1825
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1826
|
+
----------------------------------------------------------------------------
|
|
1827
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
|
|
1828
|
+
----------------------------------------------------------------------------
|
|
1829
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1830
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-17 05:02:09.250019"], ["updated_at", "2018-09-17 05:02:09.250019"]]
|
|
1831
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1832
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0[0m
|
|
1833
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (0.3ms)
|
|
1834
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
1835
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
1836
|
+
----------------------------------------------
|
|
1837
|
+
DashboardControllerTest: test_should_get_index
|
|
1838
|
+
----------------------------------------------
|
|
1839
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
1840
|
+
[1m[35mSQL (0.6ms)[0m [1m[31mDELETE FROM "accounts"[0m
|
|
1841
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
1842
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1843
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 05:02:09.397713"], ["updated_at", "2018-09-17 05:02:09.397713"]]
|
|
1844
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1845
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1846
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Edit"], ["created_at", "2018-09-17 05:02:09.398945"], ["updated_at", "2018-09-17 05:02:09.398945"]]
|
|
1847
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1848
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1849
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?)[0m [["name", "Customer 1"], ["bio", "this is bio text"], ["created_at", "2018-09-17 05:02:09.406596"], ["updated_at", "2018-09-17 05:02:09.406596"], ["type", "Customer"]]
|
|
1850
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1851
|
+
Started GET "/rails/db" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
1852
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
1853
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
1854
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (213.7ms)
|
|
1855
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (3.0ms)
|
|
1856
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.2ms)
|
|
1857
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.4ms)
|
|
1858
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (3.2ms)
|
|
1859
|
+
Completed 200 OK in 245ms (Views: 242.5ms | ActiveRecord: 0.1ms)
|
|
1860
|
+
Started GET "/rails/db/tables/users" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
1861
|
+
Processing by RailsDb::TablesController#show as HTML
|
|
1862
|
+
Parameters: {"id"=>"users"}
|
|
1863
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application
|
|
1864
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.3ms)
|
|
1865
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1866
|
+
FROM sqlite_master
|
|
1867
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
1868
|
+
UNION ALL
|
|
1869
|
+
SELECT sql
|
|
1870
|
+
FROM sqlite_temp_master
|
|
1871
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
1872
|
+
[0m
|
|
1873
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1874
|
+
FROM sqlite_master
|
|
1875
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
1876
|
+
UNION ALL
|
|
1877
|
+
SELECT sql
|
|
1878
|
+
FROM sqlite_temp_master
|
|
1879
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
1880
|
+
[0m
|
|
1881
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1882
|
+
FROM sqlite_master
|
|
1883
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
1884
|
+
UNION ALL
|
|
1885
|
+
SELECT sql
|
|
1886
|
+
FROM sqlite_temp_master
|
|
1887
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
1888
|
+
[0m
|
|
1889
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1890
|
+
FROM sqlite_master
|
|
1891
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
1892
|
+
UNION ALL
|
|
1893
|
+
SELECT sql
|
|
1894
|
+
FROM sqlite_temp_master
|
|
1895
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
1896
|
+
[0m
|
|
1897
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1898
|
+
FROM sqlite_master
|
|
1899
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
1900
|
+
UNION ALL
|
|
1901
|
+
SELECT sql
|
|
1902
|
+
FROM sqlite_temp_master
|
|
1903
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
1904
|
+
[0m
|
|
1905
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
1906
|
+
FROM sqlite_master
|
|
1907
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
1908
|
+
UNION ALL
|
|
1909
|
+
SELECT sql
|
|
1910
|
+
FROM sqlite_temp_master
|
|
1911
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
1912
|
+
[0m
|
|
1913
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_show.html.erb (10.9ms)
|
|
1914
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application (12.8ms)
|
|
1915
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
1916
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
1917
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1918
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.8ms)
|
|
1919
|
+
Completed 200 OK in 22ms (Views: 16.2ms | ActiveRecord: 3.9ms)
|
|
1920
|
+
Started GET "/rails/db/tables/users/data" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
1921
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
1922
|
+
Parameters: {"table_id"=>"users"}
|
|
1923
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1924
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
1925
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.1ms)
|
|
1926
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (34.7ms)
|
|
1927
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (8.6ms)
|
|
1928
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
1929
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (3.1ms)
|
|
1930
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (2.2ms)
|
|
1931
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (2.0ms)
|
|
1932
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1933
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1934
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.4ms)
|
|
1935
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (94.4ms)
|
|
1936
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (98.6ms)
|
|
1937
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
1938
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
1939
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1940
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
1941
|
+
Completed 200 OK in 116ms (Views: 99.4ms | ActiveRecord: 3.8ms)
|
|
1942
|
+
Started GET "/rails/db/sql" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
1943
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
1944
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
1945
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
1946
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.7ms)
|
|
1947
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (7.7ms)
|
|
1948
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
1949
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
1950
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1951
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
1952
|
+
Completed 200 OK in 17ms (Views: 12.9ms | ActiveRecord: 1.7ms)
|
|
1953
|
+
Started GET "/rails/db/import" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
1954
|
+
Processing by RailsDb::SqlController#import as HTML
|
|
1955
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application
|
|
1956
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_import_sample.html.erb (0.3ms)
|
|
1957
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application (3.4ms)
|
|
1958
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
1959
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
1960
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1961
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
1962
|
+
Completed 200 OK in 10ms (Views: 7.6ms | ActiveRecord: 0.1ms)
|
|
1963
|
+
Started GET "/rails/db/data-table" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
1964
|
+
Processing by RailsDb::DashboardController#data_table as HTML
|
|
1965
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application
|
|
1966
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application (1.1ms)
|
|
1967
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
1968
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
1969
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
1970
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
1971
|
+
Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
|
1972
|
+
Started GET "/" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
1973
|
+
Processing by HomeController#index as HTML
|
|
1974
|
+
Rendering home/index.html.erb within layouts/application
|
|
1975
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0[0m
|
|
1976
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (1.9ms)
|
|
1977
|
+
[1m[35m (0.2ms)[0m [1m[34mselect id, name, age from users order by age desc limit 10[0m
|
|
1978
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (1.0ms)
|
|
1979
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1980
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
1981
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "accounts"[0m
|
|
1982
|
+
Rendered home/index.html.erb within layouts/application (11.8ms)
|
|
1983
|
+
Completed 200 OK in 19ms (Views: 16.1ms | ActiveRecord: 1.1ms)
|
|
1984
|
+
Started GET "/rails/db/tables/users/data?sort_column=id&sort_order=desc" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
1985
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
1986
|
+
Parameters: {"sort_column"=>"id", "sort_order"=>"desc", "table_id"=>"users"}
|
|
1987
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1988
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
1989
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.1ms)
|
|
1990
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (9.1ms)
|
|
1991
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (8.3ms)
|
|
1992
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
1993
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
1994
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.4ms)
|
|
1995
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.4ms)
|
|
1996
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1997
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
1998
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.0ms)
|
|
1999
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (50.9ms)
|
|
2000
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (51.0ms)
|
|
2001
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.1ms)
|
|
2002
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
2003
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2004
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
2005
|
+
Completed 200 OK in 64ms (Views: 52.6ms | ActiveRecord: 2.9ms)
|
|
2006
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2007
|
+
Started GET "/rails/db/tables/users/destroy?pk_id=1" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
2008
|
+
Processing by RailsDb::TablesController#destroy as HTML
|
|
2009
|
+
Parameters: {"pk_id"=>"1", "table_id"=>"users"}
|
|
2010
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2011
|
+
[1m[35m (0.1ms)[0m [1m[31mDELETE FROM users WHERE id = '1';[0m
|
|
2012
|
+
Redirected to http://www.example.com/rails/db/tables/users/data
|
|
2013
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.6ms)
|
|
2014
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2015
|
+
Started GET "/rails/db/tables/users/csv" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
2016
|
+
Processing by RailsDb::TablesController#csv as HTML
|
|
2017
|
+
Parameters: {"table_id"=>"users"}
|
|
2018
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
2019
|
+
Rendering text template
|
|
2020
|
+
Rendered text template (0.0ms)
|
|
2021
|
+
Sent data users.csv (2.4ms)
|
|
2022
|
+
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.4ms)
|
|
2023
|
+
Started GET "/rails/db/standalone" for 127.0.0.1 at 2018-09-17 11:02:09 +0600
|
|
2024
|
+
Processing by RailsDb::DashboardController#standalone as HTML
|
|
2025
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application
|
|
2026
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application (1.2ms)
|
|
2027
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
2028
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
2029
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2030
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.9ms)
|
|
2031
|
+
Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.1ms)
|
|
2032
|
+
Started GET "/rails/db/tables/users/xlsx.xls" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2033
|
+
Processing by RailsDb::TablesController#xlsx as XLS
|
|
2034
|
+
Parameters: {"table_id"=>"users"}
|
|
2035
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/table.xls.axlsx
|
|
2036
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
2037
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/table.xls.axlsx (11.9ms)
|
|
2038
|
+
Rendering text template
|
|
2039
|
+
Rendered text template (0.0ms)
|
|
2040
|
+
Sent data users.xlsx (0.5ms)
|
|
2041
|
+
Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.5ms)
|
|
2042
|
+
Started GET "/rails/db/sql?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2043
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
2044
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
2045
|
+
[1m[35m (0.2ms)[0m [1m[34mselect * from users limit 10[0m
|
|
2046
|
+
[1m[35m (0.2ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
2047
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
2048
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.1ms)
|
|
2049
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.8ms)
|
|
2050
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_explain.html.erb (0.6ms)
|
|
2051
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_results.html.erb (4.0ms)
|
|
2052
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (12.5ms)
|
|
2053
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
2054
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
2055
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2056
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
2057
|
+
Completed 200 OK in 18ms (Views: 15.0ms | ActiveRecord: 2.2ms)
|
|
2058
|
+
Started POST "/rails/db/sql-csv.csv?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2059
|
+
Processing by RailsDb::SqlController#csv as CSV
|
|
2060
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
2061
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
2062
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
2063
|
+
Rendering text template
|
|
2064
|
+
Rendered text template (0.0ms)
|
|
2065
|
+
Sent data results.csv (0.3ms)
|
|
2066
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.3ms)
|
|
2067
|
+
Started POST "/rails/db/sql-xls.xls?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2068
|
+
Processing by RailsDb::SqlController#xls as XLS
|
|
2069
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
2070
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
2071
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
2072
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/xls.xls.axlsx
|
|
2073
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/xls.xls.axlsx (7.0ms)
|
|
2074
|
+
Rendering text template
|
|
2075
|
+
Rendered text template (0.0ms)
|
|
2076
|
+
Sent data results.xlsx (0.3ms)
|
|
2077
|
+
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.2ms)
|
|
2078
|
+
Started GET "/rails/db/tables/users/edit?pk_id=2" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2079
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
2080
|
+
Parameters: {"pk_id"=>"2", "table_id"=>"users"}
|
|
2081
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2082
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
2083
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb
|
|
2084
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_edit.html.erb (33.3ms)
|
|
2085
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb (39.5ms)
|
|
2086
|
+
Completed 200 OK in 68ms (Views: 44.9ms | ActiveRecord: 3.7ms)
|
|
2087
|
+
Started PUT "/rails/db/tables/users/update?pk_id=2" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2088
|
+
Processing by RailsDb::TablesController#update as JS
|
|
2089
|
+
Parameters: {"record"=>{"name"=>"JOHN"}, "pk_id"=>"2", "table_id"=>"users"}
|
|
2090
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2091
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
2092
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2093
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "JOHN"], ["updated_at", "2018-09-17 05:02:10.165625"], ["id", 2]]
|
|
2094
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2095
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb
|
|
2096
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (2.2ms)
|
|
2097
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb (5.5ms)
|
|
2098
|
+
Completed 200 OK in 23ms (Views: 5.1ms | ActiveRecord: 1.3ms)
|
|
2099
|
+
[1m[36mUser Load (0.0ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
2100
|
+
Started GET "/rails/db/tables/users/new" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2101
|
+
Processing by RailsDb::TablesController#new as JS
|
|
2102
|
+
Parameters: {"table_id"=>"users"}
|
|
2103
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2104
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/new.js.erb
|
|
2105
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_new.html.erb (12.7ms)
|
|
2106
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/new.js.erb (31.8ms)
|
|
2107
|
+
Completed 200 OK in 63ms (Views: 29.6ms | ActiveRecord: 3.0ms)
|
|
2108
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2109
|
+
Started POST "/rails/db/tables/users/create" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2110
|
+
Processing by RailsDb::TablesController#create as JS
|
|
2111
|
+
Parameters: {"record"=>{"name"=>"XXX"}, "table_id"=>"users"}
|
|
2112
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2113
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2114
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "XXX"], ["created_at", "2018-09-17 05:02:10.254743"], ["updated_at", "2018-09-17 05:02:10.254743"]]
|
|
2115
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2116
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/create.js.erb
|
|
2117
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.2ms)
|
|
2118
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (8.7ms)
|
|
2119
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_condition_fields.html.erb (7.7ms)
|
|
2120
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
2121
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
2122
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.5ms)
|
|
2123
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.8ms)
|
|
2124
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2125
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2126
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_sql.html.erb (0.3ms)
|
|
2127
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_data.html.erb (54.7ms)
|
|
2128
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/create.js.erb (60.5ms)
|
|
2129
|
+
Completed 200 OK in 82ms (Views: 58.8ms | ActiveRecord: 3.0ms)
|
|
2130
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2131
|
+
Started GET "/rails/db/tables/users/edit?pk_id=3" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2132
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
2133
|
+
Parameters: {"pk_id"=>"3", "table_id"=>"users"}
|
|
2134
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2135
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
2136
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb
|
|
2137
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_edit.html.erb (14.1ms)
|
|
2138
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/edit.js.erb (15.4ms)
|
|
2139
|
+
Completed 200 OK in 29ms (Views: 13.6ms | ActiveRecord: 2.4ms)
|
|
2140
|
+
Started PUT "/rails/db/tables/users/update?pk_id=3" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2141
|
+
Processing by RailsDb::TablesController#update as JS
|
|
2142
|
+
Parameters: {"record"=>{"name"=>"STI"}, "pk_id"=>"3", "table_id"=>"users"}
|
|
2143
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2144
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
2145
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2146
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "STI"], ["updated_at", "2018-09-17 05:02:10.370717"], ["id", 3]]
|
|
2147
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2148
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb
|
|
2149
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/_row.html.erb (1.9ms)
|
|
2150
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/tables/update.js.erb (2.4ms)
|
|
2151
|
+
Completed 200 OK in 18ms (Views: 2.0ms | ActiveRecord: 1.2ms)
|
|
2152
|
+
[1m[36mCustomer Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
2153
|
+
Started GET "/admin/tools/db" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2154
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
2155
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
2156
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (0.4ms)
|
|
2157
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
2158
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
2159
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2160
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
2161
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
|
2162
|
+
Started GET "/admin/tools/db/sql" for 127.0.0.1 at 2018-09-17 11:02:10 +0600
|
|
2163
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
2164
|
+
Rendering /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
2165
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
2166
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/_history.html.erb (0.5ms)
|
|
2167
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (5.3ms)
|
|
2168
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
2169
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
2170
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2171
|
+
Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
2172
|
+
Completed 200 OK in 10ms (Views: 7.7ms | ActiveRecord: 1.9ms)
|
|
2173
|
+
[1m[35m (2.1ms)[0m [1m[31mrollback transaction[0m
|
|
2174
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
2175
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2176
|
+
----------------------------------------------
|
|
2177
|
+
DashboardControllerTest: test_should_get_index
|
|
2178
|
+
----------------------------------------------
|
|
2179
|
+
[1m[35mSQL (1.6ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2180
|
+
[1m[35mSQL (0.4ms)[0m [1m[31mDELETE FROM "accounts"[0m
|
|
2181
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
2182
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2183
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 10:22:31.480375"], ["updated_at", "2018-09-17 10:22:31.480375"]]
|
|
2184
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2185
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2186
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Edit"], ["created_at", "2018-09-17 10:22:31.482321"], ["updated_at", "2018-09-17 10:22:31.482321"]]
|
|
2187
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2188
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2189
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?)[0m [["name", "Customer 1"], ["bio", "this is bio text"], ["created_at", "2018-09-17 10:22:31.493336"], ["updated_at", "2018-09-17 10:22:31.493336"], ["type", "Customer"]]
|
|
2190
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2191
|
+
Started GET "/rails/db" for 127.0.0.1 at 2018-09-17 16:22:31 +0600
|
|
2192
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
2193
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
2194
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (560.6ms)
|
|
2195
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (4.8ms)
|
|
2196
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (1.9ms)
|
|
2197
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.4ms)
|
|
2198
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (3.3ms)
|
|
2199
|
+
Completed 200 OK in 601ms (Views: 598.0ms | ActiveRecord: 0.2ms)
|
|
2200
|
+
Started GET "/rails/db/tables/users" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2201
|
+
Processing by RailsDb::TablesController#show as HTML
|
|
2202
|
+
Parameters: {"id"=>"users"}
|
|
2203
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application
|
|
2204
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.3ms)
|
|
2205
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2206
|
+
FROM sqlite_master
|
|
2207
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
2208
|
+
UNION ALL
|
|
2209
|
+
SELECT sql
|
|
2210
|
+
FROM sqlite_temp_master
|
|
2211
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
2212
|
+
[0m
|
|
2213
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2214
|
+
FROM sqlite_master
|
|
2215
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
2216
|
+
UNION ALL
|
|
2217
|
+
SELECT sql
|
|
2218
|
+
FROM sqlite_temp_master
|
|
2219
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
2220
|
+
[0m
|
|
2221
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2222
|
+
FROM sqlite_master
|
|
2223
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
2224
|
+
UNION ALL
|
|
2225
|
+
SELECT sql
|
|
2226
|
+
FROM sqlite_temp_master
|
|
2227
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
2228
|
+
[0m
|
|
2229
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2230
|
+
FROM sqlite_master
|
|
2231
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
2232
|
+
UNION ALL
|
|
2233
|
+
SELECT sql
|
|
2234
|
+
FROM sqlite_temp_master
|
|
2235
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
2236
|
+
[0m
|
|
2237
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2238
|
+
FROM sqlite_master
|
|
2239
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
2240
|
+
UNION ALL
|
|
2241
|
+
SELECT sql
|
|
2242
|
+
FROM sqlite_temp_master
|
|
2243
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
2244
|
+
[0m
|
|
2245
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2246
|
+
FROM sqlite_master
|
|
2247
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
2248
|
+
UNION ALL
|
|
2249
|
+
SELECT sql
|
|
2250
|
+
FROM sqlite_temp_master
|
|
2251
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
2252
|
+
[0m
|
|
2253
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_show.html.erb (12.1ms)
|
|
2254
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application (14.0ms)
|
|
2255
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.5ms)
|
|
2256
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (1.5ms)
|
|
2257
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2258
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (1.3ms)
|
|
2259
|
+
Completed 200 OK in 26ms (Views: 19.6ms | ActiveRecord: 4.2ms)
|
|
2260
|
+
Started GET "/rails/db/tables/users/data" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2261
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
2262
|
+
Parameters: {"table_id"=>"users"}
|
|
2263
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2264
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
2265
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
2266
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (46.0ms)
|
|
2267
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (11.3ms)
|
|
2268
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
2269
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (2.6ms)
|
|
2270
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.5ms)
|
|
2271
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.7ms)
|
|
2272
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2273
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2274
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_sql.html.erb (0.4ms)
|
|
2275
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_data.html.erb (116.0ms)
|
|
2276
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (118.2ms)
|
|
2277
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
2278
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
2279
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2280
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
2281
|
+
Completed 200 OK in 146ms (Views: 123.9ms | ActiveRecord: 3.2ms)
|
|
2282
|
+
Started GET "/rails/db/sql" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2283
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
2284
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
2285
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
2286
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_history.html.erb (0.8ms)
|
|
2287
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (8.9ms)
|
|
2288
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.1ms)
|
|
2289
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (1.1ms)
|
|
2290
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2291
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.8ms)
|
|
2292
|
+
Completed 200 OK in 22ms (Views: 15.6ms | ActiveRecord: 2.0ms)
|
|
2293
|
+
Started GET "/rails/db/import" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2294
|
+
Processing by RailsDb::SqlController#import as HTML
|
|
2295
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application
|
|
2296
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_import_sample.html.erb (0.6ms)
|
|
2297
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application (3.3ms)
|
|
2298
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
2299
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
2300
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2301
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
2302
|
+
Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.1ms)
|
|
2303
|
+
Started GET "/rails/db/data-table" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2304
|
+
Processing by RailsDb::DashboardController#data_table as HTML
|
|
2305
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application
|
|
2306
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application (2.3ms)
|
|
2307
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
2308
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
2309
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2310
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
2311
|
+
Completed 200 OK in 9ms (Views: 6.8ms | ActiveRecord: 0.1ms)
|
|
2312
|
+
Started GET "/" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2313
|
+
Processing by HomeController#index as HTML
|
|
2314
|
+
Rendering home/index.html.erb within layouts/application
|
|
2315
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0[0m
|
|
2316
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (1.9ms)
|
|
2317
|
+
[1m[35m (0.2ms)[0m [1m[34mselect id, name, age from users order by age desc limit 10[0m
|
|
2318
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (1.0ms)
|
|
2319
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2320
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
2321
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "accounts"[0m
|
|
2322
|
+
Rendered home/index.html.erb within layouts/application (15.5ms)
|
|
2323
|
+
Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 1.1ms)
|
|
2324
|
+
Started GET "/rails/db/tables/users/data?sort_column=id&sort_order=desc" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2325
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
2326
|
+
Parameters: {"sort_column"=>"id", "sort_order"=>"desc", "table_id"=>"users"}
|
|
2327
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2328
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
2329
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
2330
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (8.5ms)
|
|
2331
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (8.1ms)
|
|
2332
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
2333
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.5ms)
|
|
2334
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.3ms)
|
|
2335
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.4ms)
|
|
2336
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2337
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2338
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_sql.html.erb (0.0ms)
|
|
2339
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_data.html.erb (50.4ms)
|
|
2340
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (50.5ms)
|
|
2341
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.3ms)
|
|
2342
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (1.6ms)
|
|
2343
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2344
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (1.0ms)
|
|
2345
|
+
Completed 200 OK in 65ms (Views: 53.9ms | ActiveRecord: 2.8ms)
|
|
2346
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2347
|
+
Started GET "/rails/db/tables/users/destroy?pk_id=1" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2348
|
+
Processing by RailsDb::TablesController#destroy as HTML
|
|
2349
|
+
Parameters: {"pk_id"=>"1", "table_id"=>"users"}
|
|
2350
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2351
|
+
[1m[35m (0.1ms)[0m [1m[31mDELETE FROM users WHERE id = '1';[0m
|
|
2352
|
+
Redirected to http://www.example.com/rails/db/tables/users/data
|
|
2353
|
+
Completed 302 Found in 15ms (ActiveRecord: 0.5ms)
|
|
2354
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2355
|
+
Started GET "/rails/db/tables/users/csv" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2356
|
+
Processing by RailsDb::TablesController#csv as HTML
|
|
2357
|
+
Parameters: {"table_id"=>"users"}
|
|
2358
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
2359
|
+
Rendering text template
|
|
2360
|
+
Rendered text template (0.0ms)
|
|
2361
|
+
Sent data users.csv (1.5ms)
|
|
2362
|
+
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.5ms)
|
|
2363
|
+
Started GET "/rails/db/standalone" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2364
|
+
Processing by RailsDb::DashboardController#standalone as HTML
|
|
2365
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application
|
|
2366
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application (1.2ms)
|
|
2367
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.1ms)
|
|
2368
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (1.0ms)
|
|
2369
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2370
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
2371
|
+
Completed 200 OK in 8ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
|
2372
|
+
Started GET "/rails/db/tables/users/xlsx.xls" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2373
|
+
Processing by RailsDb::TablesController#xlsx as XLS
|
|
2374
|
+
Parameters: {"table_id"=>"users"}
|
|
2375
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/table.xls.axlsx
|
|
2376
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
2377
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/table.xls.axlsx (13.3ms)
|
|
2378
|
+
Rendering text template
|
|
2379
|
+
Rendered text template (0.0ms)
|
|
2380
|
+
Sent data users.xlsx (0.4ms)
|
|
2381
|
+
Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.4ms)
|
|
2382
|
+
Started GET "/rails/db/sql?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2383
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
2384
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
2385
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
2386
|
+
[1m[35m (0.2ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
2387
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
2388
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
2389
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_history.html.erb (0.2ms)
|
|
2390
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_explain.html.erb (0.5ms)
|
|
2391
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_results.html.erb (3.6ms)
|
|
2392
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (10.5ms)
|
|
2393
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (0.8ms)
|
|
2394
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
2395
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2396
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
2397
|
+
Completed 200 OK in 15ms (Views: 12.8ms | ActiveRecord: 2.1ms)
|
|
2398
|
+
Started POST "/rails/db/sql-csv.csv?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2399
|
+
Processing by RailsDb::SqlController#csv as CSV
|
|
2400
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
2401
|
+
[1m[35m (0.2ms)[0m [1m[34mselect * from users limit 10[0m
|
|
2402
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
2403
|
+
Rendering text template
|
|
2404
|
+
Rendered text template (0.0ms)
|
|
2405
|
+
Sent data results.csv (0.6ms)
|
|
2406
|
+
Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.3ms)
|
|
2407
|
+
Started POST "/rails/db/sql-xls.xls?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2408
|
+
Processing by RailsDb::SqlController#xls as XLS
|
|
2409
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
2410
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
2411
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
2412
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/xls.xls.axlsx
|
|
2413
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/xls.xls.axlsx (5.3ms)
|
|
2414
|
+
Rendering text template
|
|
2415
|
+
Rendered text template (0.0ms)
|
|
2416
|
+
Sent data results.xlsx (0.3ms)
|
|
2417
|
+
Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.2ms)
|
|
2418
|
+
Started GET "/rails/db/tables/users/edit?pk_id=2" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2419
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
2420
|
+
Parameters: {"pk_id"=>"2", "table_id"=>"users"}
|
|
2421
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2422
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
2423
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/edit.js.erb
|
|
2424
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_edit.html.erb (29.1ms)
|
|
2425
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/edit.js.erb (33.3ms)
|
|
2426
|
+
Completed 200 OK in 58ms (Views: 38.5ms | ActiveRecord: 2.7ms)
|
|
2427
|
+
Started PUT "/rails/db/tables/users/update?pk_id=2" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2428
|
+
Processing by RailsDb::TablesController#update as JS
|
|
2429
|
+
Parameters: {"record"=>{"name"=>"JOHN"}, "pk_id"=>"2", "table_id"=>"users"}
|
|
2430
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2431
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
2432
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2433
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "JOHN"], ["updated_at", "2018-09-17 10:22:32.642904"], ["id", 2]]
|
|
2434
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2435
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/update.js.erb
|
|
2436
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (3.8ms)
|
|
2437
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/update.js.erb (8.8ms)
|
|
2438
|
+
Completed 200 OK in 27ms (Views: 8.0ms | ActiveRecord: 1.7ms)
|
|
2439
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
2440
|
+
Started GET "/rails/db/tables/users/new" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2441
|
+
Processing by RailsDb::TablesController#new as JS
|
|
2442
|
+
Parameters: {"table_id"=>"users"}
|
|
2443
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2444
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/new.js.erb
|
|
2445
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_new.html.erb (9.1ms)
|
|
2446
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/new.js.erb (31.1ms)
|
|
2447
|
+
Completed 200 OK in 62ms (Views: 29.7ms | ActiveRecord: 2.0ms)
|
|
2448
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2449
|
+
Started POST "/rails/db/tables/users/create" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2450
|
+
Processing by RailsDb::TablesController#create as JS
|
|
2451
|
+
Parameters: {"record"=>{"name"=>"XXX"}, "table_id"=>"users"}
|
|
2452
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2453
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2454
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "XXX"], ["created_at", "2018-09-17 10:22:32.737067"], ["updated_at", "2018-09-17 10:22:32.737067"]]
|
|
2455
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2456
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/create.js.erb
|
|
2457
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.4ms)
|
|
2458
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (14.1ms)
|
|
2459
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (8.0ms)
|
|
2460
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
2461
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.9ms)
|
|
2462
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (2.6ms)
|
|
2463
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.9ms)
|
|
2464
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2465
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2466
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_sql.html.erb (0.3ms)
|
|
2467
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_data.html.erb (64.0ms)
|
|
2468
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/create.js.erb (67.6ms)
|
|
2469
|
+
Completed 200 OK in 90ms (Views: 64.8ms | ActiveRecord: 3.7ms)
|
|
2470
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2471
|
+
Started GET "/rails/db/tables/users/edit?pk_id=3" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2472
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
2473
|
+
Parameters: {"pk_id"=>"3", "table_id"=>"users"}
|
|
2474
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2475
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
2476
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/edit.js.erb
|
|
2477
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_edit.html.erb (12.1ms)
|
|
2478
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/edit.js.erb (13.3ms)
|
|
2479
|
+
Completed 200 OK in 31ms (Views: 12.0ms | ActiveRecord: 2.0ms)
|
|
2480
|
+
Started PUT "/rails/db/tables/users/update?pk_id=3" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2481
|
+
Processing by RailsDb::TablesController#update as JS
|
|
2482
|
+
Parameters: {"record"=>{"name"=>"STI"}, "pk_id"=>"3", "table_id"=>"users"}
|
|
2483
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2484
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
2485
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2486
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "STI"], ["updated_at", "2018-09-17 10:22:32.867049"], ["id", 3]]
|
|
2487
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2488
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/update.js.erb
|
|
2489
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
2490
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/update.js.erb (2.1ms)
|
|
2491
|
+
Completed 200 OK in 22ms (Views: 1.7ms | ActiveRecord: 1.3ms)
|
|
2492
|
+
[1m[36mCustomer Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
2493
|
+
Started GET "/admin/tools/db" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2494
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
2495
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
2496
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (0.4ms)
|
|
2497
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
2498
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
2499
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2500
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
2501
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
|
2502
|
+
Started GET "/admin/tools/db/sql" for 127.0.0.1 at 2018-09-17 16:22:32 +0600
|
|
2503
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
2504
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
2505
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
2506
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_history.html.erb (0.2ms)
|
|
2507
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (4.7ms)
|
|
2508
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
2509
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
2510
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2511
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
2512
|
+
Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 1.7ms)
|
|
2513
|
+
[1m[35m (2.0ms)[0m [1m[31mrollback transaction[0m
|
|
2514
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2515
|
+
------------------------------------
|
|
2516
|
+
RailsDbTest: test_verify_access_proc
|
|
2517
|
+
------------------------------------
|
|
2518
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2519
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2520
|
+
-----------------------
|
|
2521
|
+
RailsDbTest: test_truth
|
|
2522
|
+
-----------------------
|
|
2523
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2524
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2525
|
+
------------------------
|
|
2526
|
+
TableTest: test_truncate
|
|
2527
|
+
------------------------
|
|
2528
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2529
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2530
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 10:22:32.893910"], ["updated_at", "2018-09-17 10:22:32.893910"]]
|
|
2531
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2532
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2533
|
+
[1m[35m (0.0ms)[0m [1m[31mDELETE FROM users;[0m
|
|
2534
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2535
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
2536
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2537
|
+
---------------------------
|
|
2538
|
+
TableTest: test_primary_key
|
|
2539
|
+
---------------------------
|
|
2540
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2541
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2542
|
+
----------------------
|
|
2543
|
+
TableTest: test_to_csv
|
|
2544
|
+
----------------------
|
|
2545
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2546
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 10:22:32.897937"], ["updated_at", "2018-09-17 10:22:32.897937"]]
|
|
2547
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2548
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
2549
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
2550
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2551
|
+
------------------------
|
|
2552
|
+
TableTest: test_as_table
|
|
2553
|
+
------------------------
|
|
2554
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2555
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2556
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 10:22:32.901700"], ["updated_at", "2018-09-17 10:22:32.901700"]]
|
|
2557
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2558
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2559
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
|
|
2560
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
|
2561
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2562
|
+
-----------------------
|
|
2563
|
+
TableTest: test_columns
|
|
2564
|
+
-----------------------
|
|
2565
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2566
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2567
|
+
----------------------
|
|
2568
|
+
TableTest: test_delete
|
|
2569
|
+
----------------------
|
|
2570
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2571
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2572
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 10:22:32.919942"], ["updated_at", "2018-09-17 10:22:32.919942"]]
|
|
2573
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2574
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2575
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "john"], ["created_at", "2018-09-17 10:22:32.920944"], ["updated_at", "2018-09-17 10:22:32.920944"]]
|
|
2576
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2577
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2578
|
+
[1m[35m (0.1ms)[0m [1m[31mDELETE FROM users WHERE id = 1;[0m
|
|
2579
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2580
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "igor"]]
|
|
2581
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "john"]]
|
|
2582
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
2583
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2584
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
2585
|
+
TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
|
|
2586
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
2587
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2588
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2589
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
2590
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_hash_key_for_this_table
|
|
2591
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
2592
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2593
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2594
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
2595
|
+
TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
|
|
2596
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
2597
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2598
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2599
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
2600
|
+
TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
|
|
2601
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
2602
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2603
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2604
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
2605
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_record_for_this_table:column
|
|
2606
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
2607
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2608
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2609
|
+
--------------------------
|
|
2610
|
+
SqlImportTest: test_import
|
|
2611
|
+
--------------------------
|
|
2612
|
+
[1m[35m (0.1ms)[0m [1m[33mupdate users set age = 11 where id = 1[0m
|
|
2613
|
+
[1m[35m (0.1ms)[0m [1m[33mupdate users set age = 22 where id = 2[0m
|
|
2614
|
+
[1m[35m (0.0ms)[0m [1m[33mupdate users set age = 33 where id = 3[0m
|
|
2615
|
+
[1m[35m (0.4ms)[0m [1m[35m
|
|
2616
|
+
CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));[0m
|
|
2617
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
2618
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2619
|
+
------------------------------------------------------------------
|
|
2620
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
|
|
2621
|
+
------------------------------------------------------------------
|
|
2622
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2623
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 10:22:32.938054"], ["updated_at", "2018-09-17 10:22:32.938054"]]
|
|
2624
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2625
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
2626
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (1.8ms)
|
|
2627
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
|
2628
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2629
|
+
--------------------------------------------------------------------------------
|
|
2630
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
|
|
2631
|
+
--------------------------------------------------------------------------------
|
|
2632
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2633
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 10:22:32.965918"], ["updated_at", "2018-09-17 10:22:32.965918"]]
|
|
2634
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2635
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
2636
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (0.9ms)
|
|
2637
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
|
2638
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2639
|
+
----------------------------------------------------------------------
|
|
2640
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
|
|
2641
|
+
----------------------------------------------------------------------
|
|
2642
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2643
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 10:22:32.990582"], ["updated_at", "2018-09-17 10:22:32.990582"]]
|
|
2644
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2645
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
2646
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (0.1ms)
|
|
2647
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
2648
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2649
|
+
----------------------------------------------------------------------------
|
|
2650
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
|
|
2651
|
+
----------------------------------------------------------------------------
|
|
2652
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2653
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-17 10:22:32.995031"], ["updated_at", "2018-09-17 10:22:32.995031"]]
|
|
2654
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2655
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0[0m
|
|
2656
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (0.3ms)
|
|
2657
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
2658
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2659
|
+
--------------------------
|
|
2660
|
+
DatabaseTest: test_adapter
|
|
2661
|
+
--------------------------
|
|
2662
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2663
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2664
|
+
-------------------------
|
|
2665
|
+
DatabaseTest: test_insert
|
|
2666
|
+
-------------------------
|
|
2667
|
+
[1m[35m (1.0ms)[0m [1m[31mdelete from projects_users[0m
|
|
2668
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN delete from projects_users[0m
|
|
2669
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2670
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
2671
|
+
[1m[35m (0.0ms)[0m [1m[32minsert into projects_users(project_id, user_id) values(1,2)[0m
|
|
2672
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN insert into projects_users(project_id, user_id) values(1,2)[0m
|
|
2673
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
2674
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
2675
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2676
|
+
------------------------
|
|
2677
|
+
DatabaseTest: test_query
|
|
2678
|
+
------------------------
|
|
2679
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2680
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2681
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 10:22:33.003796"], ["updated_at", "2018-09-17 10:22:33.003796"]]
|
|
2682
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2683
|
+
[1m[35m (0.0ms)[0m [1m[34mselect count(*) as users_count from users[0m
|
|
2684
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select count(*) as users_count from users[0m
|
|
2685
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
2686
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2687
|
+
------------------------------------
|
|
2688
|
+
DatabaseTest: test_accessible_tables
|
|
2689
|
+
------------------------------------
|
|
2690
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2691
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2692
|
+
-------------------------
|
|
2693
|
+
DatabaseTest: test_tables
|
|
2694
|
+
-------------------------
|
|
2695
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2696
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
2697
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2698
|
+
--------------------------
|
|
2699
|
+
DatabaseTest: test_adapter
|
|
2700
|
+
--------------------------
|
|
2701
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
|
2702
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2703
|
+
------------------------------------
|
|
2704
|
+
DatabaseTest: test_accessible_tables
|
|
2705
|
+
------------------------------------
|
|
2706
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2707
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2708
|
+
-------------------------
|
|
2709
|
+
DatabaseTest: test_insert
|
|
2710
|
+
-------------------------
|
|
2711
|
+
[1m[35m (1.4ms)[0m [1m[31mdelete from projects_users[0m
|
|
2712
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN delete from projects_users[0m
|
|
2713
|
+
[1m[35mSQL (0.7ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2714
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
2715
|
+
[1m[35m (0.1ms)[0m [1m[32minsert into projects_users(project_id, user_id) values(1,2)[0m
|
|
2716
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN insert into projects_users(project_id, user_id) values(1,2)[0m
|
|
2717
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM projects_users[0m
|
|
2718
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
2719
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2720
|
+
------------------------
|
|
2721
|
+
DatabaseTest: test_query
|
|
2722
|
+
------------------------
|
|
2723
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2724
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2725
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 10:54:13.474584"], ["updated_at", "2018-09-17 10:54:13.474584"]]
|
|
2726
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2727
|
+
[1m[35m (0.1ms)[0m [1m[34mselect count(*) as users_count from users[0m
|
|
2728
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select count(*) as users_count from users[0m
|
|
2729
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
2730
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2731
|
+
-------------------------
|
|
2732
|
+
DatabaseTest: test_tables
|
|
2733
|
+
-------------------------
|
|
2734
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2735
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2736
|
+
------------------------
|
|
2737
|
+
TableTest: test_truncate
|
|
2738
|
+
------------------------
|
|
2739
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2740
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2741
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 10:54:13.479504"], ["updated_at", "2018-09-17 10:54:13.479504"]]
|
|
2742
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2743
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2744
|
+
[1m[35m (0.0ms)[0m [1m[31mDELETE FROM users;[0m
|
|
2745
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2746
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
2747
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2748
|
+
-----------------------
|
|
2749
|
+
TableTest: test_columns
|
|
2750
|
+
-----------------------
|
|
2751
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2752
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2753
|
+
---------------------------
|
|
2754
|
+
TableTest: test_primary_key
|
|
2755
|
+
---------------------------
|
|
2756
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2757
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2758
|
+
------------------------
|
|
2759
|
+
TableTest: test_as_table
|
|
2760
|
+
------------------------
|
|
2761
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2762
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2763
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 10:54:13.484292"], ["updated_at", "2018-09-17 10:54:13.484292"]]
|
|
2764
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2765
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2766
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ?[0m [["LIMIT", 1]]
|
|
2767
|
+
[1m[35m (0.5ms)[0m [1m[31mrollback transaction[0m
|
|
2768
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2769
|
+
----------------------
|
|
2770
|
+
TableTest: test_to_csv
|
|
2771
|
+
----------------------
|
|
2772
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2773
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 10:54:13.504168"], ["updated_at", "2018-09-17 10:54:13.504168"]]
|
|
2774
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2775
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
2776
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
2777
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2778
|
+
----------------------
|
|
2779
|
+
TableTest: test_delete
|
|
2780
|
+
----------------------
|
|
2781
|
+
[1m[35mSQL (0.2ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2782
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2783
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "igor"], ["created_at", "2018-09-17 10:54:13.508711"], ["updated_at", "2018-09-17 10:54:13.508711"]]
|
|
2784
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2785
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2786
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "john"], ["created_at", "2018-09-17 10:54:13.509656"], ["updated_at", "2018-09-17 10:54:13.509656"]]
|
|
2787
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2788
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2789
|
+
[1m[35m (0.0ms)[0m [1m[31mDELETE FROM users WHERE id = 1;[0m
|
|
2790
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2791
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "igor"]]
|
|
2792
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."name" = ?[0m [["name", "john"]]
|
|
2793
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
2794
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2795
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
2796
|
+
TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
|
|
2797
|
+
----------------------------------------------------------------------------------------------------------------------------
|
|
2798
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2799
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2800
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
2801
|
+
TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
|
|
2802
|
+
----------------------------------------------------------------------------------------------------------------------------------
|
|
2803
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2804
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2805
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
2806
|
+
TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
|
|
2807
|
+
-------------------------------------------------------------------------------------------------------------------------
|
|
2808
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2809
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2810
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
2811
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_hash_key_for_this_table
|
|
2812
|
+
------------------------------------------------------------------------------------------------------------------------------------
|
|
2813
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2814
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2815
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
2816
|
+
TablesHelperTest: test_method_column_is_checked?_returns_true_for_checkbox_status_if_cookie_does_not_contain_record_for_this_table:column
|
|
2817
|
+
-----------------------------------------------------------------------------------------------------------------------------------------
|
|
2818
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2819
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2820
|
+
-----------------------
|
|
2821
|
+
RailsDbTest: test_truth
|
|
2822
|
+
-----------------------
|
|
2823
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2824
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
2825
|
+
------------------------------------
|
|
2826
|
+
RailsDbTest: test_verify_access_proc
|
|
2827
|
+
------------------------------------
|
|
2828
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
|
2829
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
2830
|
+
----------------------------------------------
|
|
2831
|
+
DashboardControllerTest: test_should_get_index
|
|
2832
|
+
----------------------------------------------
|
|
2833
|
+
[1m[35mSQL (0.3ms)[0m [1m[31mDELETE FROM "users"[0m
|
|
2834
|
+
[1m[35mSQL (0.5ms)[0m [1m[31mDELETE FROM "accounts"[0m
|
|
2835
|
+
[1m[35mSQL (0.1ms)[0m [1m[31mDELETE FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
2836
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2837
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 10:54:13.665124"], ["updated_at", "2018-09-17 10:54:13.665124"]]
|
|
2838
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2839
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2840
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Edit"], ["created_at", "2018-09-17 10:54:13.666154"], ["updated_at", "2018-09-17 10:54:13.666154"]]
|
|
2841
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2842
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
2843
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?)[0m [["name", "Customer 1"], ["bio", "this is bio text"], ["created_at", "2018-09-17 10:54:13.675194"], ["updated_at", "2018-09-17 10:54:13.675194"], ["type", "Customer"]]
|
|
2844
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
2845
|
+
Started GET "/rails/db" for 127.0.0.1 at 2018-09-17 16:54:13 +0600
|
|
2846
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
2847
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
2848
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (365.7ms)
|
|
2849
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (4.7ms)
|
|
2850
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (3.2ms)
|
|
2851
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.3ms)
|
|
2852
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (5.5ms)
|
|
2853
|
+
Completed 200 OK in 412ms (Views: 408.8ms | ActiveRecord: 0.2ms)
|
|
2854
|
+
Started GET "/rails/db/tables/users" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
2855
|
+
Processing by RailsDb::TablesController#show as HTML
|
|
2856
|
+
Parameters: {"id"=>"users"}
|
|
2857
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application
|
|
2858
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.3ms)
|
|
2859
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2860
|
+
FROM sqlite_master
|
|
2861
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
2862
|
+
UNION ALL
|
|
2863
|
+
SELECT sql
|
|
2864
|
+
FROM sqlite_temp_master
|
|
2865
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
2866
|
+
[0m
|
|
2867
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2868
|
+
FROM sqlite_master
|
|
2869
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
2870
|
+
UNION ALL
|
|
2871
|
+
SELECT sql
|
|
2872
|
+
FROM sqlite_temp_master
|
|
2873
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
2874
|
+
[0m
|
|
2875
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2876
|
+
FROM sqlite_master
|
|
2877
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
2878
|
+
UNION ALL
|
|
2879
|
+
SELECT sql
|
|
2880
|
+
FROM sqlite_temp_master
|
|
2881
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
2882
|
+
[0m
|
|
2883
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2884
|
+
FROM sqlite_master
|
|
2885
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
2886
|
+
UNION ALL
|
|
2887
|
+
SELECT sql
|
|
2888
|
+
FROM sqlite_temp_master
|
|
2889
|
+
WHERE name='index_users_on_salary' AND type='index'
|
|
2890
|
+
[0m
|
|
2891
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2892
|
+
FROM sqlite_master
|
|
2893
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
2894
|
+
UNION ALL
|
|
2895
|
+
SELECT sql
|
|
2896
|
+
FROM sqlite_temp_master
|
|
2897
|
+
WHERE name='index_users_on_name' AND type='index'
|
|
2898
|
+
[0m
|
|
2899
|
+
[1m[35m (0.1ms)[0m [1m[34m SELECT sql
|
|
2900
|
+
FROM sqlite_master
|
|
2901
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
2902
|
+
UNION ALL
|
|
2903
|
+
SELECT sql
|
|
2904
|
+
FROM sqlite_temp_master
|
|
2905
|
+
WHERE name='index_users_on_account_id' AND type='index'
|
|
2906
|
+
[0m
|
|
2907
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_show.html.erb (13.5ms)
|
|
2908
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/show.html.erb within layouts/rails_db/application (15.6ms)
|
|
2909
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.2ms)
|
|
2910
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (1.2ms)
|
|
2911
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2912
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (1.0ms)
|
|
2913
|
+
Completed 200 OK in 26ms (Views: 18.8ms | ActiveRecord: 5.0ms)
|
|
2914
|
+
Started GET "/rails/db/tables/users/data" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
2915
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
2916
|
+
Parameters: {"table_id"=>"users"}
|
|
2917
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2918
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
2919
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
2920
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (50.4ms)
|
|
2921
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (8.8ms)
|
|
2922
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
2923
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (2.4ms)
|
|
2924
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.5ms)
|
|
2925
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.7ms)
|
|
2926
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2927
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2928
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_sql.html.erb (0.3ms)
|
|
2929
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_data.html.erb (108.1ms)
|
|
2930
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (110.3ms)
|
|
2931
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
2932
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
2933
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.0ms)
|
|
2934
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.5ms)
|
|
2935
|
+
Completed 200 OK in 126ms (Views: 111.2ms | ActiveRecord: 3.2ms)
|
|
2936
|
+
Started GET "/rails/db/sql" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
2937
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
2938
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
2939
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.1ms)
|
|
2940
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_history.html.erb (0.8ms)
|
|
2941
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (8.4ms)
|
|
2942
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
2943
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
2944
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.0ms)
|
|
2945
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
2946
|
+
Completed 200 OK in 18ms (Views: 13.6ms | ActiveRecord: 2.1ms)
|
|
2947
|
+
Started GET "/rails/db/import" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
2948
|
+
Processing by RailsDb::SqlController#import as HTML
|
|
2949
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application
|
|
2950
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_import_sample.html.erb (0.3ms)
|
|
2951
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/import.html.erb within layouts/rails_db/application (3.1ms)
|
|
2952
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (0.9ms)
|
|
2953
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (1.7ms)
|
|
2954
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.0ms)
|
|
2955
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
2956
|
+
Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 0.2ms)
|
|
2957
|
+
Started GET "/rails/db/data-table" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
2958
|
+
Processing by RailsDb::DashboardController#data_table as HTML
|
|
2959
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application
|
|
2960
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/data_table.html.erb within layouts/rails_db/application (1.0ms)
|
|
2961
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
2962
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
2963
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.1ms)
|
|
2964
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (1.2ms)
|
|
2965
|
+
Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.1ms)
|
|
2966
|
+
Started GET "/" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
2967
|
+
Processing by HomeController#index as HTML
|
|
2968
|
+
Rendering home/index.html.erb within layouts/application
|
|
2969
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0[0m
|
|
2970
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (1.1ms)
|
|
2971
|
+
[1m[35m (0.1ms)[0m [1m[34mselect id, name, age from users order by age desc limit 10[0m
|
|
2972
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (0.8ms)
|
|
2973
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2974
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')[0m
|
|
2975
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "accounts"[0m
|
|
2976
|
+
Rendered home/index.html.erb within layouts/application (10.0ms)
|
|
2977
|
+
Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.8ms)
|
|
2978
|
+
Started GET "/rails/db/tables/users/data?sort_column=id&sort_order=desc" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
2979
|
+
Processing by RailsDb::TablesController#data as HTML
|
|
2980
|
+
Parameters: {"sort_column"=>"id", "sort_order"=>"desc", "table_id"=>"users"}
|
|
2981
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2982
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application
|
|
2983
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
2984
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (9.0ms)
|
|
2985
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (7.8ms)
|
|
2986
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
2987
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
2988
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.4ms)
|
|
2989
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.4ms)
|
|
2990
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2991
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
2992
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_sql.html.erb (0.0ms)
|
|
2993
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_data.html.erb (57.3ms)
|
|
2994
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/data.html.erb within layouts/rails_db/application (57.4ms)
|
|
2995
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (0.8ms)
|
|
2996
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.8ms)
|
|
2997
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.0ms)
|
|
2998
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
2999
|
+
Completed 200 OK in 73ms (Views: 58.7ms | ActiveRecord: 3.1ms)
|
|
3000
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3001
|
+
Started GET "/rails/db/tables/users/destroy?pk_id=1" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3002
|
+
Processing by RailsDb::TablesController#destroy as HTML
|
|
3003
|
+
Parameters: {"pk_id"=>"1", "table_id"=>"users"}
|
|
3004
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3005
|
+
[1m[35m (0.1ms)[0m [1m[31mDELETE FROM users WHERE id = '1';[0m
|
|
3006
|
+
Redirected to http://www.example.com/rails/db/tables/users/data
|
|
3007
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.4ms)
|
|
3008
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3009
|
+
Started GET "/rails/db/tables/users/csv" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3010
|
+
Processing by RailsDb::TablesController#csv as HTML
|
|
3011
|
+
Parameters: {"table_id"=>"users"}
|
|
3012
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
3013
|
+
Rendering text template
|
|
3014
|
+
Rendered text template (0.0ms)
|
|
3015
|
+
Sent data users.csv (2.6ms)
|
|
3016
|
+
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.3ms)
|
|
3017
|
+
Started GET "/rails/db/standalone" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3018
|
+
Processing by RailsDb::DashboardController#standalone as HTML
|
|
3019
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application
|
|
3020
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/standalone.html.erb within layouts/rails_db/application (1.0ms)
|
|
3021
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.1ms)
|
|
3022
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (1.3ms)
|
|
3023
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.0ms)
|
|
3024
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.7ms)
|
|
3025
|
+
Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.1ms)
|
|
3026
|
+
Started GET "/rails/db/tables/users/xlsx.xls" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3027
|
+
Processing by RailsDb::TablesController#xlsx as XLS
|
|
3028
|
+
Parameters: {"table_id"=>"users"}
|
|
3029
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/table.xls.axlsx
|
|
3030
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT * FROM users[0m
|
|
3031
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/table.xls.axlsx (11.0ms)
|
|
3032
|
+
Rendering text template
|
|
3033
|
+
Rendered text template (0.0ms)
|
|
3034
|
+
Sent data users.xlsx (0.3ms)
|
|
3035
|
+
Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.5ms)
|
|
3036
|
+
Started GET "/rails/db/sql?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3037
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
3038
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
3039
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
3040
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
3041
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
3042
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
3043
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_history.html.erb (0.4ms)
|
|
3044
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_explain.html.erb (0.5ms)
|
|
3045
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_results.html.erb (4.0ms)
|
|
3046
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (11.3ms)
|
|
3047
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
3048
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
3049
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.0ms)
|
|
3050
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.5ms)
|
|
3051
|
+
Completed 200 OK in 17ms (Views: 14.1ms | ActiveRecord: 2.2ms)
|
|
3052
|
+
Started POST "/rails/db/sql-csv.csv?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3053
|
+
Processing by RailsDb::SqlController#csv as CSV
|
|
3054
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
3055
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
3056
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
3057
|
+
Rendering text template
|
|
3058
|
+
Rendered text template (0.0ms)
|
|
3059
|
+
Sent data results.csv (0.3ms)
|
|
3060
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
|
3061
|
+
Started POST "/rails/db/sql-xls.xls?sql=select+%2A+from+users+limit+10" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3062
|
+
Processing by RailsDb::SqlController#xls as XLS
|
|
3063
|
+
Parameters: {"sql"=>"select * from users limit 10"}
|
|
3064
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users limit 10[0m
|
|
3065
|
+
[1m[35m (0.1ms)[0m [1m[35mEXPLAIN select * from users limit 10[0m
|
|
3066
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/xls.xls.axlsx
|
|
3067
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/xls.xls.axlsx (5.6ms)
|
|
3068
|
+
Rendering text template
|
|
3069
|
+
Rendered text template (0.0ms)
|
|
3070
|
+
Sent data results.xlsx (0.3ms)
|
|
3071
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.2ms)
|
|
3072
|
+
Started GET "/rails/db/tables/users/edit?pk_id=2" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3073
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
3074
|
+
Parameters: {"pk_id"=>"2", "table_id"=>"users"}
|
|
3075
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3076
|
+
[1m[36m Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
3077
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/edit.js.erb
|
|
3078
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_edit.html.erb (33.4ms)
|
|
3079
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/edit.js.erb (37.8ms)
|
|
3080
|
+
Completed 200 OK in 68ms (Views: 43.5ms | ActiveRecord: 3.0ms)
|
|
3081
|
+
Started PUT "/rails/db/tables/users/update?pk_id=2" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3082
|
+
Processing by RailsDb::TablesController#update as JS
|
|
3083
|
+
Parameters: {"record"=>{"name"=>"JOHN"}, "pk_id"=>"2", "table_id"=>"users"}
|
|
3084
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3085
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
3086
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
3087
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "JOHN"], ["updated_at", "2018-09-17 10:54:14.613881"], ["id", 2]]
|
|
3088
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
3089
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/update.js.erb
|
|
3090
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (2.4ms)
|
|
3091
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/update.js.erb (5.6ms)
|
|
3092
|
+
Completed 200 OK in 27ms (Views: 5.3ms | ActiveRecord: 1.4ms)
|
|
3093
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
|
3094
|
+
Started GET "/rails/db/tables/users/new" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3095
|
+
Processing by RailsDb::TablesController#new as JS
|
|
3096
|
+
Parameters: {"table_id"=>"users"}
|
|
3097
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3098
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/new.js.erb
|
|
3099
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_new.html.erb (9.5ms)
|
|
3100
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/new.js.erb (29.2ms)
|
|
3101
|
+
Completed 200 OK in 63ms (Views: 27.9ms | ActiveRecord: 2.1ms)
|
|
3102
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3103
|
+
Started POST "/rails/db/tables/users/create" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3104
|
+
Processing by RailsDb::TablesController#create as JS
|
|
3105
|
+
Parameters: {"record"=>{"name"=>"XXX"}, "table_id"=>"users"}
|
|
3106
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3107
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
3108
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "XXX"], ["created_at", "2018-09-17 10:54:14.705953"], ["updated_at", "2018-09-17 10:54:14.705953"]]
|
|
3109
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
3110
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/create.js.erb
|
|
3111
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.3ms)
|
|
3112
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (14.2ms)
|
|
3113
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_condition_fields.html.erb (9.3ms)
|
|
3114
|
+
[1m[36m Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ? OFFSET ?[0m [["LIMIT", 30], ["OFFSET", 0]]
|
|
3115
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (2.8ms)
|
|
3116
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (2.8ms)
|
|
3117
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (2.7ms)
|
|
3118
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3119
|
+
[1m[35mCACHE (0.0ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3120
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_sql.html.erb (0.4ms)
|
|
3121
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_data.html.erb (68.9ms)
|
|
3122
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/create.js.erb (72.6ms)
|
|
3123
|
+
Completed 200 OK in 97ms (Views: 68.7ms | ActiveRecord: 4.9ms)
|
|
3124
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3125
|
+
Started GET "/rails/db/tables/users/edit?pk_id=3" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3126
|
+
Processing by RailsDb::TablesController#edit as JS
|
|
3127
|
+
Parameters: {"pk_id"=>"3", "table_id"=>"users"}
|
|
3128
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3129
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
3130
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/edit.js.erb
|
|
3131
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_edit.html.erb (12.9ms)
|
|
3132
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/edit.js.erb (14.2ms)
|
|
3133
|
+
Completed 200 OK in 34ms (Views: 12.4ms | ActiveRecord: 2.4ms)
|
|
3134
|
+
Started PUT "/rails/db/tables/users/update?pk_id=3" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3135
|
+
Processing by RailsDb::TablesController#update as JS
|
|
3136
|
+
Parameters: {"record"=>{"name"=>"STI"}, "pk_id"=>"3", "table_id"=>"users"}
|
|
3137
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT COUNT(*) FROM "users"[0m
|
|
3138
|
+
[1m[36m Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
3139
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
3140
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ?[0m [["name", "STI"], ["updated_at", "2018-09-17 10:54:14.843175"], ["id", 3]]
|
|
3141
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
3142
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/update.js.erb
|
|
3143
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/_row.html.erb (1.6ms)
|
|
3144
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/tables/update.js.erb (2.2ms)
|
|
3145
|
+
Completed 200 OK in 19ms (Views: 1.9ms | ActiveRecord: 1.1ms)
|
|
3146
|
+
[1m[36mCustomer Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
|
3147
|
+
Started GET "/admin/tools/db" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3148
|
+
Processing by RailsDb::DashboardController#index as HTML
|
|
3149
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application
|
|
3150
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/dashboard/index.html.erb within layouts/rails_db/application (0.4ms)
|
|
3151
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.0ms)
|
|
3152
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (0.9ms)
|
|
3153
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.0ms)
|
|
3154
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.6ms)
|
|
3155
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
|
3156
|
+
Started GET "/admin/tools/db/sql" for 127.0.0.1 at 2018-09-17 16:54:14 +0600
|
|
3157
|
+
Processing by RailsDb::SqlController#index as HTML
|
|
3158
|
+
Rendering /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application
|
|
3159
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_exp_col.html.erb (0.0ms)
|
|
3160
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/_history.html.erb (0.6ms)
|
|
3161
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/sql/index.html.erb within layouts/rails_db/application (5.6ms)
|
|
3162
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_header.html.erb (1.3ms)
|
|
3163
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sidebar.html.erb (1.1ms)
|
|
3164
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_gems.html.erb (0.0ms)
|
|
3165
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_footer.html.erb (0.8ms)
|
|
3166
|
+
Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 2.0ms)
|
|
3167
|
+
[1m[35m (2.3ms)[0m [1m[31mrollback transaction[0m
|
|
3168
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3169
|
+
--------------------------
|
|
3170
|
+
SqlImportTest: test_import
|
|
3171
|
+
--------------------------
|
|
3172
|
+
[1m[35m (0.1ms)[0m [1m[33mupdate users set age = 11 where id = 1[0m
|
|
3173
|
+
[1m[35m (0.0ms)[0m [1m[33mupdate users set age = 22 where id = 2[0m
|
|
3174
|
+
[1m[35m (0.0ms)[0m [1m[33mupdate users set age = 33 where id = 3[0m
|
|
3175
|
+
[1m[35m (0.3ms)[0m [1m[35m
|
|
3176
|
+
CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));[0m
|
|
3177
|
+
[1m[35m (0.4ms)[0m [1m[31mrollback transaction[0m
|
|
3178
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
|
3179
|
+
----------------------------------------------------------------------------
|
|
3180
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
|
|
3181
|
+
----------------------------------------------------------------------------
|
|
3182
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
3183
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-17 10:54:14.876346"], ["updated_at", "2018-09-17 10:54:14.876346"]]
|
|
3184
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
3185
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0[0m
|
|
3186
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (2.2ms)
|
|
3187
|
+
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
|
3188
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3189
|
+
----------------------------------------------------------------------
|
|
3190
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
|
|
3191
|
+
----------------------------------------------------------------------
|
|
3192
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
3193
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 10:54:14.908439"], ["updated_at", "2018-09-17 10:54:14.908439"]]
|
|
3194
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
3195
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
3196
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (0.8ms)
|
|
3197
|
+
[1m[35m (1.0ms)[0m [1m[31mrollback transaction[0m
|
|
3198
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3199
|
+
--------------------------------------------------------------------------------
|
|
3200
|
+
RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
|
|
3201
|
+
--------------------------------------------------------------------------------
|
|
3202
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
3203
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 10:54:14.936619"], ["updated_at", "2018-09-17 10:54:14.936619"]]
|
|
3204
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
3205
|
+
[1m[35m (0.1ms)[0m [1m[34mselect * from users[0m
|
|
3206
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (0.4ms)
|
|
3207
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
|
3208
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
|
3209
|
+
------------------------------------------------------------------
|
|
3210
|
+
RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
|
|
3211
|
+
------------------------------------------------------------------
|
|
3212
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
3213
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Igor"], ["created_at", "2018-09-17 10:54:14.941901"], ["updated_at", "2018-09-17 10:54:14.941901"]]
|
|
3214
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
3215
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT * FROM users[0m
|
|
3216
|
+
Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (1.1ms)
|
|
3217
|
+
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|