xplore 0.0.1.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (608) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +27 -0
  3. data/Gemfile.lock +211 -0
  4. data/MIT-LICENSE +20 -0
  5. data/Rakefile +36 -0
  6. data/app/assets/images/rails_db/data_table.png +0 -0
  7. data/app/assets/images/rails_db/data_table_code.png +0 -0
  8. data/app/assets/images/rails_db/logo.png +0 -0
  9. data/app/assets/images/rails_db/logo_mini.png +0 -0
  10. data/app/assets/images/rails_db/logo_mini_2.png +0 -0
  11. data/app/assets/images/rails_db/railsdb.png +0 -0
  12. data/app/assets/images/rails_db/runsql.png +0 -0
  13. data/app/assets/javascripts/rails_db/application.js +95 -0
  14. data/app/assets/javascripts/rails_db/foundation.min.js +20 -0
  15. data/app/assets/javascripts/rails_db/jquery.cookie.js +114 -0
  16. data/app/assets/javascripts/rails_db/jquery.js +26 -0
  17. data/app/assets/javascripts/rails_db/rails-ujs.js +685 -0
  18. data/app/assets/javascripts/rails_db/search.js +19 -0
  19. data/app/assets/javascripts/rails_db/show_hide_columns.js +54 -0
  20. data/app/assets/javascripts/rails_db/sticky.js +44 -0
  21. data/app/assets/stylesheets/rails_db/app.css +90 -0
  22. data/app/assets/stylesheets/rails_db/application.css +13 -0
  23. data/app/assets/stylesheets/rails_db/forms.css +9 -0
  24. data/app/assets/stylesheets/rails_db/foundation.css +6579 -0
  25. data/app/assets/stylesheets/rails_db/foundation.min.css +1 -0
  26. data/app/assets/stylesheets/rails_db/foundation_and_overrides.css +8 -0
  27. data/app/assets/stylesheets/rails_db/normalize.css +424 -0
  28. data/app/assets/stylesheets/rails_db/pagination.css +17 -0
  29. data/app/assets/stylesheets/rails_db/search.css +7 -0
  30. data/app/assets/stylesheets/rails_db/sidebar.css +22 -0
  31. data/app/assets/stylesheets/rails_db/table.css +12 -0
  32. data/app/controllers/rails_db/application_controller.rb +26 -0
  33. data/app/controllers/rails_db/dashboard_controller.rb +8 -0
  34. data/app/controllers/rails_db/sql_controller.rb +42 -0
  35. data/app/controllers/rails_db/tables_controller.rb +108 -0
  36. data/app/helpers/rails_db/application_helper.rb +82 -0
  37. data/app/helpers/rails_db/flash_messages_helper.rb +44 -0
  38. data/app/helpers/rails_db/rails_db_data_table_helper.rb +74 -0
  39. data/app/helpers/rails_db/tables_helper.rb +60 -0
  40. data/app/views/layouts/rails_db/application.html.erb +32 -0
  41. data/app/views/rails_db/dashboard/data_table.html.erb +19 -0
  42. data/app/views/rails_db/dashboard/index.html.erb +37 -0
  43. data/app/views/rails_db/dashboard/standalone.html.erb +19 -0
  44. data/app/views/rails_db/shared/_data_table.html.erb +32 -0
  45. data/app/views/rails_db/shared/_exp_col.html.erb +2 -0
  46. data/app/views/rails_db/shared/_footer.html.erb +57 -0
  47. data/app/views/rails_db/shared/_gems.html.erb +15 -0
  48. data/app/views/rails_db/shared/_header.html.erb +55 -0
  49. data/app/views/rails_db/shared/_sidebar.html.erb +14 -0
  50. data/app/views/rails_db/shared/_sql_result.html.erb +31 -0
  51. data/app/views/rails_db/sql/_explain.html.erb +10 -0
  52. data/app/views/rails_db/sql/_history.html.erb +17 -0
  53. data/app/views/rails_db/sql/_import_sample.html.erb +19 -0
  54. data/app/views/rails_db/sql/_results.html.erb +52 -0
  55. data/app/views/rails_db/sql/import.html.erb +33 -0
  56. data/app/views/rails_db/sql/index.html.erb +61 -0
  57. data/app/views/rails_db/sql/xls.xls.axlsx +9 -0
  58. data/app/views/rails_db/tables/_condition_fields.html.erb +10 -0
  59. data/app/views/rails_db/tables/_data.html.erb +127 -0
  60. data/app/views/rails_db/tables/_edit.html.erb +26 -0
  61. data/app/views/rails_db/tables/_new.html.erb +17 -0
  62. data/app/views/rails_db/tables/_row.html.erb +15 -0
  63. data/app/views/rails_db/tables/_search.html.erb +78 -0
  64. data/app/views/rails_db/tables/_show.html.erb +101 -0
  65. data/app/views/rails_db/tables/_sql.html.erb +7 -0
  66. data/app/views/rails_db/tables/create.js.erb +9 -0
  67. data/app/views/rails_db/tables/data.html.erb +1 -0
  68. data/app/views/rails_db/tables/data.js.erb +14 -0
  69. data/app/views/rails_db/tables/destroy.js.erb +5 -0
  70. data/app/views/rails_db/tables/edit.js.erb +7 -0
  71. data/app/views/rails_db/tables/index.html.erb +17 -0
  72. data/app/views/rails_db/tables/new.js.erb +7 -0
  73. data/app/views/rails_db/tables/show.html.erb +1 -0
  74. data/app/views/rails_db/tables/show.js.erb +14 -0
  75. data/app/views/rails_db/tables/table.xls.axlsx +9 -0
  76. data/app/views/rails_db/tables/update.js.erb +3 -0
  77. data/bin/railsdb +3 -0
  78. data/bin/runsql +49 -0
  79. data/bin/xplore +3 -0
  80. data/config/database.travis.yml +31 -0
  81. data/config/initializers/mime_types.rb +1 -0
  82. data/config/initializers/simple_form.rb +168 -0
  83. data/config/initializers/will_paginate_fix.rb +15 -0
  84. data/config/locales/simple_form.en.yml +31 -0
  85. data/config/routes.rb +32 -0
  86. data/lib/ext/ransack_ext.rb +26 -0
  87. data/lib/ext/simple_form_ext.rb +1 -0
  88. data/lib/ext/string_ext.rb +10 -0
  89. data/lib/generators/USAGE +8 -0
  90. data/lib/generators/templates/xplore.rb +27 -0
  91. data/lib/generators/xplore_generator.rb +6 -0
  92. data/lib/libs.rb +24 -0
  93. data/lib/rails/routes.rb +7 -0
  94. data/lib/rails_db.rb +66 -0
  95. data/lib/rails_db/adapters/base_adapter.rb +74 -0
  96. data/lib/rails_db/adapters/mysql.rb +31 -0
  97. data/lib/rails_db/adapters/postgres.rb +17 -0
  98. data/lib/rails_db/adapters/sqlite.rb +23 -0
  99. data/lib/rails_db/blank_results.rb +8 -0
  100. data/lib/rails_db/connection.rb +25 -0
  101. data/lib/rails_db/database.rb +46 -0
  102. data/lib/rails_db/engine.rb +17 -0
  103. data/lib/rails_db/history.rb +29 -0
  104. data/lib/rails_db/mysql_result.rb +18 -0
  105. data/lib/rails_db/rails_db_error.rb +5 -0
  106. data/lib/rails_db/result.rb +19 -0
  107. data/lib/rails_db/sql_explain.rb +9 -0
  108. data/lib/rails_db/sql_import.rb +26 -0
  109. data/lib/rails_db/sql_query.rb +43 -0
  110. data/lib/rails_db/sql_query_data.rb +36 -0
  111. data/lib/rails_db/table.rb +74 -0
  112. data/lib/rails_db/table_data.rb +78 -0
  113. data/lib/rails_db/table_pagination.rb +30 -0
  114. data/lib/rails_db/version.rb +10 -0
  115. data/lib/standalone.rb +50 -0
  116. data/lib/tasks/rails_db_tasks.rake +4 -0
  117. data/lib/templates/erb/scaffold/_form.html.erb +13 -0
  118. data/lib/xplore.rb +9 -0
  119. data/test/dashboard_controller_test.rb +101 -0
  120. data/test/database_test.rb +20 -0
  121. data/test/dummy/README.rdoc +28 -0
  122. data/test/dummy/Rakefile +6 -0
  123. data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  124. data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.svg +288 -0
  125. data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  126. data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  127. data/test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  128. data/test/dummy/app/assets/javascripts/application.js +13 -0
  129. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  130. data/test/dummy/app/assets/stylesheets/bootstrap-theme.min.css +5 -0
  131. data/test/dummy/app/assets/stylesheets/bootstrap.min.css +5 -0
  132. data/test/dummy/app/controllers/application_controller.rb +5 -0
  133. data/test/dummy/app/controllers/home_controller.rb +7 -0
  134. data/test/dummy/app/helpers/application_helper.rb +2 -0
  135. data/test/dummy/app/models/account.rb +19 -0
  136. data/test/dummy/app/models/comment.rb +14 -0
  137. data/test/dummy/app/models/contact.rb +15 -0
  138. data/test/dummy/app/models/customer.rb +3 -0
  139. data/test/dummy/app/models/legacy_account.rb +2 -0
  140. data/test/dummy/app/models/payment.rb +2 -0
  141. data/test/dummy/app/models/populate.rb +43 -0
  142. data/test/dummy/app/models/project.rb +3 -0
  143. data/test/dummy/app/models/user.rb +20 -0
  144. data/test/dummy/app/views/home/index.html.erb +26 -0
  145. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  146. data/test/dummy/bin/bundle +3 -0
  147. data/test/dummy/bin/rails +4 -0
  148. data/test/dummy/bin/rake +4 -0
  149. data/test/dummy/bin/setup +29 -0
  150. data/test/dummy/config.ru +4 -0
  151. data/test/dummy/config/application.rb +32 -0
  152. data/test/dummy/config/boot.rb +5 -0
  153. data/test/dummy/config/database.yml +33 -0
  154. data/test/dummy/config/environment.rb +5 -0
  155. data/test/dummy/config/environments/development.rb +51 -0
  156. data/test/dummy/config/environments/production.rb +87 -0
  157. data/test/dummy/config/environments/test.rb +53 -0
  158. data/test/dummy/config/initializers/assets.rb +11 -0
  159. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  160. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  161. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  162. data/test/dummy/config/initializers/inflections.rb +16 -0
  163. data/test/dummy/config/initializers/mime_types.rb +7 -0
  164. data/test/dummy/config/initializers/rails_db.rb +23 -0
  165. data/test/dummy/config/initializers/session_store.rb +3 -0
  166. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  167. data/test/dummy/config/locales/en.yml +23 -0
  168. data/test/dummy/config/routes.rb +17 -0
  169. data/test/dummy/config/secrets.yml +22 -0
  170. data/test/dummy/db/migrate/20151013203739_create_users.rb +18 -0
  171. data/test/dummy/db/migrate/20151013203757_create_comments.rb +10 -0
  172. data/test/dummy/db/migrate/20151013204027_populate_data.rb +13 -0
  173. data/test/dummy/db/migrate/20151014074454_create_accounts.rb +14 -0
  174. data/test/dummy/db/migrate/20151014074655_create_contacts.rb +13 -0
  175. data/test/dummy/db/migrate/20151014152932_add_bd.rb +9 -0
  176. data/test/dummy/db/migrate/20151014183823_create_projects.rb +17 -0
  177. data/test/dummy/db/migrate/20151014184243_add_long_text.rb +7 -0
  178. data/test/dummy/db/migrate/20151015145740_populate_db.rb +4 -0
  179. data/test/dummy/db/migrate/20151027192250_create_payments.rb +14 -0
  180. data/test/dummy/db/migrate/20151027223149_add_non_pk_table.rb +10 -0
  181. data/test/dummy/db/migrate/20151028191429_create_legacy_accounts.rb +7 -0
  182. data/test/dummy/db/migrate/20151121125538_add_boolean_field_to_user.rb +5 -0
  183. data/test/dummy/db/migrate/20170126124628_add_sti_model.rb +5 -0
  184. data/test/dummy/db/migrate/20180528134358_add_deleted_at_to_projects.rb +6 -0
  185. data/test/dummy/db/rails_db.sqlite3 +0 -0
  186. data/test/dummy/db/schema.rb +121 -0
  187. data/test/dummy/log/development.log +0 -0
  188. data/test/dummy/log/test.log +3217 -0
  189. data/test/dummy/public/404.html +67 -0
  190. data/test/dummy/public/422.html +67 -0
  191. data/test/dummy/public/500.html +66 -0
  192. data/test/dummy/public/favicon.ico +0 -0
  193. data/test/dummy/test/fixtures/accounts.yml +20 -0
  194. data/test/dummy/test/fixtures/comments.yml +20 -0
  195. data/test/dummy/test/fixtures/contacts.yml +23 -0
  196. data/test/dummy/test/fixtures/legacy_accounts.yml +9 -0
  197. data/test/dummy/test/fixtures/projects.yml +7 -0
  198. data/test/dummy/test/fixtures/users.yml +28 -0
  199. data/test/dummy/test/models/account_test.rb +18 -0
  200. data/test/dummy/test/models/comment_test.rb +18 -0
  201. data/test/dummy/test/models/contact_test.rb +19 -0
  202. data/test/dummy/test/models/legacy_account_test.rb +7 -0
  203. data/test/dummy/test/models/project_test.rb +7 -0
  204. data/test/dummy/test/models/user_test.rb +22 -0
  205. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-3/-3PeYlcvQFXiyc_qrrBOQXgz0wLtbDmJhBRJnvr1488.cache +1 -0
  206. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-F/-FcfnnmNMM4wWUjPQEkWH8um5_y6p6emR1g4hU1R2qQ.cache +0 -0
  207. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-L/-L3VO1gnEd_gJTuYiwODQ3rYRPun9kqMtacCrOsVY1c.cache +3 -0
  208. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-j/-jtRJ5XDEWtMk8X44irP5ZNuzb2V9Or0ZboJ7-_niEs.cache +0 -0
  209. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-w/-w3FuS_th1YUJCm-pH9jBNanNGuEuQXqUssG7amL8Ds.cache +0 -0
  210. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0_/0_-cfL0H5qqH5RPA4PMbyibCJab23NM05CKOhjGR7EU.cache +3 -0
  211. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0s/0s938iaOX2NBJ-elmk5V7j6XyYC7WxwS57x4aSiyH54.cache +0 -0
  212. data/test/dummy/tmp/cache/assets/sprockets/v3.0/15/15WJ0E1sGIfwx4EHMt7T_Mkmnizu-EFhk79REPKcUBk.cache +1 -0
  213. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1Z/1ZSNTqpklIT68Laxy-YBLW8PUYhAFb1w42qJITlXD6E.cache +1 -0
  214. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1d/1dw5JEHHhUR62NbtJtVAJUu_PYxV4zBC_acgIubq4lY.cache +1 -0
  215. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1f/1fxmByaExPx_qyvAoeeJNTE1AIqhQ1uKJVfiBWkxDAs.cache +0 -0
  216. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2A/2Ao98B9hXNr_MAoBE0bkFvOOtNc7dflJmlLEarn5wvA.cache +3 -0
  217. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2c/2cjCUV2SoZNb4a7U-CVWPBsrSAT_805cWMBQqcDuR8U.cache +0 -0
  218. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2e/2efJrR69SU_l8o1Sjk88tx-cTnS6oSEgnK1Fb0axRAs.cache +1 -0
  219. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2w/2wGwWn9F7SrKCg39kjccWMXidHYY5u5xZ4Yt-mOfPqM.cache +0 -0
  220. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3C/3CqL5JcpBlWG869LrsDkT6c9tXhdGiZvKqNwbclgjSo.cache +0 -0
  221. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3W/3Wd315ZKagJ6mOWl95T_zW22e6ACDNh8v-u_r2OP9PI.cache +1 -0
  222. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3i/3i375XcAdQDkdyabScXo8biz06oNj-NoWYCtkM4FEs0.cache +3 -0
  223. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3q/3qPGxuEfQW5R2bOSyG1RF6wvFVsB13tFvdPxZZR-8vk.cache +3 -0
  224. data/test/dummy/tmp/cache/assets/sprockets/v3.0/48/48KVVGHhZsPLWcZvWEw9bjwuowgfpvf-AysRqv5EpiU.cache +1 -0
  225. data/test/dummy/tmp/cache/assets/sprockets/v3.0/48/48SOLhFmb18qNdB780dOecxhOhEJA6w2a7UOIv82tmg.cache +0 -0
  226. data/test/dummy/tmp/cache/assets/sprockets/v3.0/48/48XPOucl5y6xUHclTqp0SyppN3gfeMSRgU9uFKHGn-o.cache +3 -0
  227. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4C/4CTQ4VtxEw31gzicc5CHylnyd7nm0H42FF4oYxboXTo.cache +1 -0
  228. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4a/4aS0J85DqrYD1wy4w459cMFZ2m3CUpgVKLGMzhCMRvM.cache +0 -0
  229. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4d/4do9oKHJKVkyKuNF7XuU-6X_o0QeZQ_gOZKea8fGkto.cache +3 -0
  230. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4m/4m6WqGGtzbJleNhmQJMseHmiOe74DdqItRtznvcLVPw.cache +1 -0
  231. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4q/4qrR1dT_ELGScYJ2cqkziobDtLewgTl218LFziW6wX0.cache +1 -0
  232. data/test/dummy/tmp/cache/assets/sprockets/v3.0/52/52ou7nuAMyALVwK-XNEugfYrU5JzxmqQJu5HpPuFKRM.cache +0 -0
  233. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5B/5B6lpKu9QoCoRSyrioV2lSVbuzbfPPQpMvXymy4Ra7M.cache +1 -0
  234. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5B/5BKqk3njw3-YM9teLof7isqoNM0KYfD9g3_cm4GjkC8.cache +1 -0
  235. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
  236. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5T/5TT9-fuPGtt_-l3mShCXHO97l_X0x1J_IYpg3nIKtek.cache +1 -0
  237. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5_/5_sVCQD_e-VCdkhi4b-BUT6Dud7KXDY-aSoFFgL6HzM.cache +2 -0
  238. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5m/5mgadVKfhwNHEpj2aH1ibAHGwXFqlk_UulZqP9gXb2A.cache +1 -0
  239. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6l/6luMGnRMcSYMPpRMuD5Reher3-5eAQvGrbNtUVVy7qY.cache +0 -0
  240. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6y/6ypGLjzNSGxOEo38o6RIdyZdY3_Qk65bHqrwHNEi7UU.cache +3 -0
  241. data/test/dummy/tmp/cache/assets/sprockets/v3.0/81/81gCr-iB9-Kc5uGUwsgmphxJU75rCqLi4V46LmfI8hk.cache +3 -0
  242. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8H/8HuSW0OkkqhOtCj4tgN3HZmt4647gNFmdzZz_kruXqI.cache +0 -0
  243. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8J/8Jdu6ccMGQk1YXzWahOASmKq8_c044wcnuQGfVLJNIo.cache +1 -0
  244. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8L/8LOYv3aMRUfxzj3PHgVWnGjLVtTnOtGJzbVT1uYvCgU.cache +0 -0
  245. data/test/dummy/tmp/cache/assets/sprockets/v3.0/93/93AT9J01EEg9wMy2kazqa2iYDgKLqLS6Aha2JvXZ6Ag.cache +1 -0
  246. data/test/dummy/tmp/cache/assets/sprockets/v3.0/95/95D29A-uZ3JE8q1AnmDTfJA_wYZDwFQqqwvdpVQSaDg.cache +0 -0
  247. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9E/9ENYoj-DyZwyP2xj1wjNmrQPYLG8MKu1vA6ltjlzBRA.cache +0 -0
  248. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9S/9SojMkkZhVJXWN3C8NLMxOlAcqkzoJztGIzD9beeX3k.cache +1 -0
  249. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9k/9kVCP__MMt4MmgysySWOrkI1q5kqoUO5mJ4YEuVetZ4.cache +1 -0
  250. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9k/9kfxuo-P7rNVrgP4myFBPSnZV--J2RN-1RpIkUmfBic.cache +1 -0
  251. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9l/9lPzFm4TCleQiA0-lgf98XHXLsITeI8cz4C-QY_xzf0.cache +1 -0
  252. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9o/9o1sXvhEXIQm7sqMwZiJJDY2EfesbCCa2tmgQxJJ1eg.cache +0 -0
  253. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9q/9qcda9dG-GWYSUonAOVBiAahGezzHyE3_5CZSc9v_eY.cache +0 -0
  254. data/test/dummy/tmp/cache/assets/sprockets/v3.0/AG/AGipCopt5nUbCGSffzEPpq__8plTIQxUdwacxoN-sIk.cache +0 -0
  255. data/test/dummy/tmp/cache/assets/sprockets/v3.0/AP/AP1aZyJJv_laGt-fcQaN2zOxDHihTya21MP8gLG00NU.cache +1 -0
  256. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ac/AcKUMe8rYEN-IVydH5TORJW7zGKbXDraafVORgJ4rbM.cache +0 -0
  257. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Aq/AqCxEqcGZVCBSxA9000eYZuhFy63R9oTWcubWiWOsso.cache +3 -0
  258. data/test/dummy/tmp/cache/assets/sprockets/v3.0/B5/B5aHApeQYF95u2bVxfgglRilRJ7OrXcZStXwVEx8DTk.cache +1 -0
  259. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BC/BCTfd6_GQaUTfHdg2F97JpNNwCplKSVycEnha8X9qpY.cache +0 -0
  260. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BK/BK7tt-FHQqVsq0daFrNI2rXpH0HghqH1xmFUkhS6R-M.cache +1 -0
  261. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BQ/BQl702soe7dQfuOyeqsEshEOrbd2lKYMzmpspd0dMQs.cache +3 -0
  262. data/test/dummy/tmp/cache/assets/sprockets/v3.0/B_/B_SdfjQrsi-DnNG20ZPUZanDJkjHTvumDYxAhWhIbKM.cache +1 -0
  263. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bi/Bif-qAEinocIsBM2dpprgHdDRhX7qgxBSl99cGbT8hA.cache +1 -0
  264. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bu/BuksXaU3jtpsVsJWfiD8cfPrL0ltyzMzFAMYjqRTOcw.cache +1 -0
  265. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Bu/bu8TG_r6XkhW5jRuaIQjL7nSsSWJxy6HU3as-SLx08w.cache +0 -0
  266. data/test/dummy/tmp/cache/assets/sprockets/v3.0/By/ByWm2E10VfVkjoo6TTbmHEGCd7ig_YVjcgxLIvP2npM.cache +1 -0
  267. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CR/CRqq96DgcC21NgatrM5atJKzdGF-c7LTVKs0RarWRkY.cache +0 -0
  268. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CW/CWoppfC2IWWZIAHMpTb3hbvKKSSJ-olfkhUa-oHN4PE.cache +0 -0
  269. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CX/CXBjVb13lPn0ycRm2U8NdpjNrmhUo5bGmQECAutK6gc.cache +1 -0
  270. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cf/CfRhSnsJS38ZqxUwdmvvUyKui_SQJJMy4xJCEJ5MOIY.cache +0 -0
  271. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cn/Cn1YFWYIDZLTEh8VsPw1kGmSRxY2WCMkazIA8VkP0-w.cache +1 -0
  272. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cp/CpekvnYgBZcdkmAPsnBvhl-3XakgVnWE5M47gqeEflA.cache +1 -0
  273. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cp/Cpmy5aKRxqQZrrkXhIdbeeVpkfOvAMjZm6k6W3Y2pl8.cache +0 -0
  274. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cs/CsyBxyZKg8U8pUjJ7AxR8oMqNTodkSOxFhwYsY6asMg.cache +0 -0
  275. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cu/CukP1uyOWDQREAZEqfh1Txnt6k-NVhGTaId_ucRKiQM.cache +1 -0
  276. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cu/cUlsdL1D57TWpWEBMEOsTKtrMw_PI3q8NKENxL86zfE.cache +1 -0
  277. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Cv/CvOuHLIkVkJEQ-AYwoFKAwesvgbXsTt-fMKDV6QaTbo.cache +1 -0
  278. data/test/dummy/tmp/cache/assets/sprockets/v3.0/D0/D0cusWF2ayrU6hgv_QDiZctO9-IH4aZIhzpSXyHUzYo.cache +1 -0
  279. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Dd/DdyZEcJEUOyLdDmKc33qawMY1cGBU0Px41YYpdNLJZc.cache +1 -0
  280. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Dz/DzuURzJufWmN3J2X4VVFAWxtOUN8D2sX05nTqa-4WD0.cache +1 -0
  281. data/test/dummy/tmp/cache/assets/sprockets/v3.0/EQ/EQoeM-3-9VOeX-k1WgrXj_N178FWzWDE6ECLdZk4D_4.cache +3 -0
  282. data/test/dummy/tmp/cache/assets/sprockets/v3.0/EQ/eQ4mbVGKgOHXzFlC5jhTAgNJh_dqeArvASV2SvPQRd8.cache +0 -0
  283. data/test/dummy/tmp/cache/assets/sprockets/v3.0/EV/EV28enuY7Byeo2_FZK8Twj1N2II34ZP4Mguf-nPmAc0.cache +1 -0
  284. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Er/ERIHCPkl64fiyFL2mA-Nr8fyTcHpUjnEBJaeNhWzubY.cache +1 -0
  285. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Er/EroaWcS4PSztx0lL3D7vJLZD7HiuCwhbgq_9b5JLTLQ.cache +0 -0
  286. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8JQR4FqJLIeiRUBPCWgS9pHRMdubVx4y1REcAODZHw.cache +1 -0
  287. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FL/FL6cJm26SynhVArz0GkU-n4CuR7ElGe5r-YjyO6bXcA.cache +1 -0
  288. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FL/FLcEIHdIDjSY1xZe0WjMgxbhmDAOwsEKpOSwJdlMtno.cache +3 -0
  289. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FN/FNOsXXTjZ6F_bcWBC6lIPvOGHV0MI17gqksD9T_Mq-s.cache +0 -0
  290. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fd/FdVBx6mbDTiCdOOexu9jmGzbjAtZE3-usUlmAcsW-dc.cache +1 -0
  291. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fh/FHmoWUdwgE5K7al03RTN9xmyZ9fmnXGkhxzZnaMW6bg.cache +1 -0
  292. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fh/Fhq7IP9lFrou1E6x46HiuVfPDyejTjpwDDYnRcNniUs.cache +3 -0
  293. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fh/fhbdIBT890K-U8d0NTFwdjeqeu-wZTy0_gxba2Q3TFM.cache +0 -0
  294. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fw/FwiXjnLLgGTbJ2tZcnFWOp30FIQFbt42kxicUMneUFU.cache +0 -0
  295. data/test/dummy/tmp/cache/assets/sprockets/v3.0/GG/GGtoQv-oNouv8ngyTssBtYsNtYeS-XCQhfF12HSchOs.cache +1 -0
  296. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gd/GdFWTQQh4Ph4GJsFYMQlE-xlPZ8S_CyzsMLvscLk5aI.cache +1 -0
  297. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gh/GhmrxaXgsgWXgfDUvZXHELBc_992TTXdQNxGzHqToRI.cache +2 -0
  298. data/test/dummy/tmp/cache/assets/sprockets/v3.0/HF/HFP4GoYWiFWdiVCWZlJd7HrbTKq3pdGl9qHp7CRJOxw.cache +1 -0
  299. data/test/dummy/tmp/cache/assets/sprockets/v3.0/He/HeZLBao-hq9x5mTgWjTl6XKjeZJHdsj7SB9oV-Mzq_s.cache +1 -0
  300. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hl/HlaVjEkHaaVWsq7zsF8l4yqxRKS0NAz72Lu5Vzr9V2U.cache +2 -0
  301. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hn/Hn5FDC3mlD11N8bTv_N1sQA-4xI1OfN960CTe_XEu9A.cache +4 -0
  302. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Hr/Hr-nJeHD-eAnjQj6zCWSO7n_y1nOzY8k7EawA-S31ic.cache +0 -0
  303. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ht/Htgd9CKkzWhCQV3jqil5EL2l08BXfX5mpIQRZwMwTHE.cache +1 -0
  304. data/test/dummy/tmp/cache/assets/sprockets/v3.0/I7/I7DyN8KeI-B1SijQswt98KeWqGzCIwkgpJw9dO4gojI.cache +1 -0
  305. data/test/dummy/tmp/cache/assets/sprockets/v3.0/I8/I8oMm2qQE2WUnB1WDLD4YD0Ncct7TsOyaFsViZHotP4.cache +1 -0
  306. data/test/dummy/tmp/cache/assets/sprockets/v3.0/IH/IHyW3ES2RV2lmaVwNY8X6nKr2qfHBZeoyTqf7TUWrlk.cache +1 -0
  307. data/test/dummy/tmp/cache/assets/sprockets/v3.0/IH/Ihh1JHJknqP5MjPo2foVJq_rJUFNJA5h9yB2qe656ng.cache +1 -0
  308. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ix/IxEPmATxPF3C4G06Njh3M3n0zCeIA1mTbUfYu0xb5sQ.cache +1 -0
  309. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J4/J4CjKaMA7j4GrlxdRrH6SrRH8ZctW6v7jBck9alkqck.cache +1 -0
  310. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J4/J4fvKSYxyw9yQ8-ox62u1o3pMTGv1DZQH1qmrLkNSrg.cache +1 -0
  311. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J8/J8AyVO4oGJPp_lRZJdM9p6aCTv3HpEx6YB4mcV23GFo.cache +1 -0
  312. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JA/JAKRpPJSPAuMV2TcjGwejA_--U9Nimo_aBQy-_gKJZk.cache +1 -0
  313. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Jj/JjlloPfuXCh60beA414OFTzpq_nI2uKW_USQsw3BGWY.cache +1 -0
  314. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Js/Js7BoIA-JQMis2bvhSuWjlMglxobVrI_W33nDGnYcc0.cache +1 -0
  315. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KM/KM9phN_DvMYH7h3DLsmzWbITRoKhKkYrZJHb4ckO3ho.cache +3 -0
  316. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KO/KOohyS_AU6sbx4m0OIt6DmIuaqQ_p_9A67HX0_96iOg.cache +4 -0
  317. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KT/KTsgyrC1qSHUy9RQU9IncaxI254KMUCizTav6gxv3-8.cache +3 -0
  318. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kf/KfOG4Fsi3FqCIc9PcgBMimIWabgiRbkAx87aEt1ytds.cache +0 -0
  319. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Kz/KzgA28xstOReawAVU0JDV3pvnaLzvNuJBewJOUAeWU8.cache +1 -0
  320. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LO/LOgMdbYddRrfyBBp6elqVYfyfvWpSZ3PYJayuNB-_54.cache +0 -0
  321. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lh/LhKJUZ4ft6Fg6YJAPbLM1W54r6S49oL8Qa4buabZC4k.cache +3 -0
  322. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lh/lhjWv71mAvpFS9-lZBgCjy9GR-CZ4sZAzbynik3F23s.cache +4 -0
  323. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lm/LMnNNW_mizZta3b9V7SunJHLs7cBjVS1ZryyacST3JU.cache +1 -0
  324. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Lm/Lm_DD4epQe2RSyqsKWuQ83mdNmJUXFoD7YgpFQQi9-s.cache +1 -0
  325. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ly/LyvAGF2_S2FvKOXBaiSrwYVNlNUIBTplZy7uZY0enPc.cache +0 -0
  326. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MB/MBY5JRtBoVJe-l7z4w_6MlZKtiCY3c9AH93D6AWr_dc.cache +0 -0
  327. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MH/MH0wXb004Qh8NjXfHaQ9VHM80zpVqJWn2IdWYZn2fOA.cache +0 -0
  328. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MK/MKR3tvTaaq5dMIYInpCXi7nHFzm_ARvc0CfOPnsm6cs.cache +1 -0
  329. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MN/MNwfbu8Wh8SvM7fzfrv35RAPS50ML6tER1qP1A042WY.cache +1 -0
  330. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MN/MnffuolBZQlIvggqEdoH3SrTZI1E5Gj4Ps3SP8iQwJo.cache +5 -0
  331. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MW/MW6BLw8iNNmaHpgiRntj8pZ3OwWFXzOTXBYFe0ORYLE.cache +3 -0
  332. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MX/MXdIh4XKK-U-rfqZcm06dzesD7ff0lt_KGFmNeORTQg.cache +1 -0
  333. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MX/mXryAndUH_7D7PtUdOsMGY4Q-Q44COVvYcy5l1OPXB8.cache +3 -0
  334. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Me/MeJjMkH8-c9rfYbpCtJ5NVDyGlrhJONjmQfT9BtJDnI.cache +2 -0
  335. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mf/MFv5RzRs2y7gZmEAbCM_jToxQhhQoolg6s_a42Uk268.cache +3 -0
  336. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mf/MfWK7Yh1fF5omJqLInj0d-v7URlzfS60VJg7ha12Avc.cache +1 -0
  337. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mp/MplgwPZfY7HzQuFhYfeLUP334Sj4MWVAE57np81LFmE.cache +1 -0
  338. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mu/MupDm264iLpqMzSa2IBpAyGoV8cjHmF74u4eO8di-lY.cache +1 -0
  339. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ND/NDEDH77zxXBYGMlSjOmgk3KyC6EbD9jBgsti7BcCG18.cache +5 -0
  340. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NJ/NJ03jKQqsipCLKS_tGee2EHtCdKR9LBtju1s9wXkXNc.cache +1 -0
  341. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NO/NOK1yx2wNqmX6ncyPV_ayBA6kAdWxyGPwpnhyAdUlgI.cache +1 -0
  342. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NQ/NQwazzUgAilBqn-UFZ3dbQuHYFJ2dUxCkoj0242jDpk.cache +3 -0
  343. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nc/Nc6lSeCjr1GUTrzCKC1a0nAF2MD_vdMvyqqAlWEKW7c.cache +5 -0
  344. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nh/Nhc5JuuhoiLMQuQ5idGUbxDO3ovk_RqWE9sa29InlzQ.cache +0 -0
  345. data/test/dummy/tmp/cache/assets/sprockets/v3.0/O7/O7b0X6n6pfRC-_DJzcHhCwJFMQU2Ilb2cVmwIZlNEuc.cache +3 -0
  346. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
  347. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OK/OKk418MFdrlM2SJAPb3dtbREHkXzWP2md23Df18nhzo.cache +0 -0
  348. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OL/OLkHnuRmLuOiKTC2JLS5HGy724lYQIAKIvuwHc8VARQ.cache +1 -0
  349. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OP/OPvZadSxmkLXfQdEyYYsD5DJOTwRv1S5oYAjvN8H_sk.cache +0 -0
  350. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ob/ObVcDmLTirRM_cBRT_CrpAI4LYN51vkbD7W-hOm3QOk.cache +1 -0
  351. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Or/Oru5w7cn82DamvfliV-HZKTsJd_yvK6P3nTL_5fTqoc.cache +0 -0
  352. data/test/dummy/tmp/cache/assets/sprockets/v3.0/P7/P72PF0QaLk07pMWtIb9MSguJbYMQLApufmYVPuG_zSE.cache +0 -0
  353. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PG/PGQreiYj8zH4MR3Z5XaXMeA08Sfx47WwFNTgJEtTpXc.cache +1 -0
  354. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pb/PbnPeRHsnGhvdp23TsJowZPLwOX-Zj9go0JXoK4lkCk.cache +3 -0
  355. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ph/Ph6pBAn9DmaFU0IViAwCYeyMV2ZdqfGlCk1CyYGaWqw.cache +1 -0
  356. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ph/phu-Q1Mpi6ST92yZbYGn6nJj4frbMom02WRoi1dx_dE.cache +0 -0
  357. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pi/PiPz-feZcumRe_xruSOiXuNsHL6mChOJxbSTm_yp3Rc.cache +0 -0
  358. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pi/pIVqc5tXAaLDSQbx4dvcFawX1iRPdcw_JTjDIE6Y0eM.cache +0 -0
  359. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pr/PreDzDw_R0LBkwMGTcVOgFTnOv5cnzKJPAleUJcs_Eg.cache +1 -0
  360. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QA/QAjzb10d_j7yMXJCjZBv5xFmyu96nTDA37AD02YREHM.cache +5 -0
  361. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QA/Qak-uTKtzaAi_F1g3phS6PsdRmwJve7tIDnltlAqCGc.cache +0 -0
  362. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QB/QBtqK3vzTGr0NVFIZUuHQ_0eqtMFGI0EnR7MjEeDyTY.cache +0 -0
  363. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QS/QSXLPzJ-35KwzZ-2iOUXWSEFoxjjZ7A6FFBx5Wj5UxY.cache +1 -0
  364. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qz/Qz2H1qzAB3FiFAZtSUJEM9jy7Ef-EKzTx8GKkhRwQRM.cache +0 -0
  365. data/test/dummy/tmp/cache/assets/sprockets/v3.0/RP/RPQbWtOXi1K_5CsSX7Y3kw8dIcIsdAH45Zo-M2y-c8k.cache +0 -0
  366. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rn/RnBzwKO0wHpcX8ozxOXNfOYGdKtStuH26dvZo4yJs9I.cache +0 -0
  367. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rq/Rq88Si5DhV1oXaO1oXygHlSQ4smn5lciHF3hY-nPcWI.cache +1 -0
  368. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rs/RsmwcD4uDKantaLOGJZrjYCfruM1SB-ukpSGdzTOwf0.cache +3 -0
  369. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rs/rSpvB-PtdIGfxMyHtxoYBjRp6_MUsoWBXMWaQ3Qrizc.cache +0 -0
  370. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rz/RzFltAlFtQB8hPdAmY9eg7ofLvNoKSFh2T2d3_cUmyo.cache +1 -0
  371. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rz/rzbi2r2CCcZ6AN4OXmpNo4xDmJLmcHXRjCcVvxyKKe4.cache +1 -0
  372. data/test/dummy/tmp/cache/assets/sprockets/v3.0/S-/S-I4R7GrD3_tbKGG_Us9iHf3srvB1URoQs4Fr1Svkj4.cache +1 -0
  373. data/test/dummy/tmp/cache/assets/sprockets/v3.0/S5/S5uwg3C-Vzlc06OAViMVVvDBLtd5BlfnLhzqpFeRvAw.cache +3 -0
  374. data/test/dummy/tmp/cache/assets/sprockets/v3.0/SR/SRo57NF8zr-sEWOuJ5-Zs4UkeGfHbKhfslbRmbN74jY.cache +1 -0
  375. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sf/SfQHdY5A04tlXTxWFmI7jbT1LjlzSPdOjsLh941dAAI.cache +1 -0
  376. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ss/Sskjz8bUd3dYQ_03Zg5Q78rOxTbK0X9A-Ck2_s097iM.cache +3 -0
  377. data/test/dummy/tmp/cache/assets/sprockets/v3.0/St/StX1otXCzjobPsofg9roBn1DfTbx0c2dzlja43_2AOc.cache +3 -0
  378. data/test/dummy/tmp/cache/assets/sprockets/v3.0/T7/T72E8mac8dhJZcl6I78UlkJ5ZTNRDm6ArbdB5dmtFyA.cache +1 -0
  379. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TU/TUYHWEN4Y2k1_mozVyoBtgoDvpm82huQiTdqGiYZjmM.cache +0 -0
  380. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Te/TeFI5V3bZ_X9Gw-MnLbi2Nkx0pWdDbjwJ_gng1vfmd4.cache +1 -0
  381. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ti/Ti06vctt40EVZ99AKJNjXk3INvYpMl8T80cFiz_0KgQ.cache +3 -0
  382. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ti/TiImQ_kn1SOcaq9eHrj_FpZxmCKOWOXbXiyRzJLJhV4.cache +0 -0
  383. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tw/TwDQHCkV6ZzkI_VqM1kG3fKrKADp8J4Z4J6bh-1-xF0.cache +4 -0
  384. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Uc/UclSgWx_1vT02Ys1CDpx9igBIYJwwlz7h8CA1sMiXqA.cache +0 -0
  385. data/test/dummy/tmp/cache/assets/sprockets/v3.0/VD/VD_Tn0Z0jCNrNM3KZb7xZOx9CzqV4KQUKamn8wirYUc.cache +1 -0
  386. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Va/VaHHjmQCLMgHyRDkoAyNcfP1BkqTe06LTlNrDXZgXJQ.cache +0 -0
  387. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Vb/VbJlDkUFdjKS2cBmQG7sjNOerFOeFJ0XvYupImNFc6o.cache +4 -0
  388. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Vu/VuTlKJwAqnUWDMOQ7lEQUG1A8kqRhioRqaAxnGrpaAU.cache +1 -0
  389. data/test/dummy/tmp/cache/assets/sprockets/v3.0/W2/W2VlfY6Z-VO_vusbjt1cID2Nbwo4gsl6UCP8HcDlVcg.cache +1 -0
  390. data/test/dummy/tmp/cache/assets/sprockets/v3.0/WI/WI6lJNbCcLwTuOfTa3XX6qHTBnl81f_z45FK1hCbIeE.cache +0 -0
  391. data/test/dummy/tmp/cache/assets/sprockets/v3.0/We/WeZB6YYUMbKj614c2jVZga64L9ya2rjrPgw2itYygwM.cache +1 -0
  392. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wp/Wp-V-YTFZ6bo6ybGNQ6Lo5WPynYals6ajrtUz2l0HxA.cache +4 -0
  393. data/test/dummy/tmp/cache/assets/sprockets/v3.0/XT/XT8crKygwq2SKcsuX-I96xndkPPYKfjSv6Z0VmVRykk.cache +1 -0
  394. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xc/XcMbv9lRhcgRF8NfEiiToZU54IMuP8Y28pV1U6XyvFQ.cache +1 -0
  395. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xc/Xcq1pAgJcuawcXB0C-l-eD57ax-GKT7UpID3cceCKRM.cache +1 -0
  396. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xf/XfaseJepcp01pidO146XHO1OgRsTabfmeIa0UcX1dV8.cache +3 -0
  397. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xf/xFmKt6WmAlQs3IDU_0OOGA5fC8-PgCQGDg4IZjz2d6E.cache +0 -0
  398. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xi/XiZAxKYuwmh_Bqe1PaKvY9pnBeE3hREh2ttamxoxaY4.cache +0 -0
  399. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xu/XunbhdpOapnjHE4nTJwV7ajm4WokOsnFkGYtCi8uAE8.cache +1 -0
  400. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Xx/XxJtq1CvGAQAwglYKKx5cfyn-RlY4XLBVh33gXdAP2E.cache +1 -0
  401. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y0/Y0WMge8wHotrrkKwHNkfW58LK_-1gh5-mDUPLeZuakg.cache +5 -0
  402. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y4/Y4tJAYSQeHBol_L8XnoByBPFUJ9RVv9qiymv3okIGxA.cache +2 -0
  403. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Y7/Y7ZIlWhKcAhXiQ1OZrtQ3rrBk_G5bcMp-WvDyiCNDE8.cache +0 -0
  404. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YC/YCJTSU03W9asgyOzgNp91MK4ediXxWxQADa7MjNiU8Y.cache +0 -0
  405. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YG/YGUC43_6tCOZ5caKiIe6PYoUCHmXyUZdkE6cXKUW0NQ.cache +1 -0
  406. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YG/YgWiq2WB9iArBmSY-pPojxGkVcj_cMlIQGtMF-YfjKA.cache +0 -0
  407. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YX/YXBNdEIFY6eNKTUAJGB1DJtETr41xpqqvmi4ErRYiuE.cache +3 -0
  408. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Z2/Z2PyD0TJO_F7FYcOLm3LvnNImEgIhnw4Jz1FuAv6im4.cache +0 -0
  409. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Z5/Z55_IZamiEoJGwsWJzN6K-URUGXaxYoo2c3fCds9pHc.cache +0 -0
  410. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Z7/Z70tHT4FisKR9SpJ3-dgYG1gIuSfjTRsPRz-yRdMSWI.cache +0 -0
  411. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZL/ZLQmeuVGNaF86uWftyoCwCOfXO2axPI8zM4tZdDRekY.cache +0 -0
  412. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zb/ZbH5w81L2WpjO3h9Vl2WjHPFOFieLeiQb4Lbx7cufig.cache +0 -0
  413. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zh/ZhDVlWUx-LwLR2okkrh4-cANb9_cS0-x5Fymq41FJAQ.cache +0 -0
  414. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_8/_8cC2SwhYxGZtiYZTnZzBvGTI_Q-1_pW4p1QkaI5H60.cache +1 -0
  415. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_C/_CbTvgMsLIUbiKWuqtPXPVkMM2LToJfjTBUbGJZ-uMI.cache +0 -0
  416. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_K/_KHDLW6h8j78KP8e4kYGRAgx1-t-UZ4nXsjwxkPfTnU.cache +3 -0
  417. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_K/_kVzjvDm5fobGVXeeGmh2Deh9aB2WQHRaA2e9MSq74o.cache +1 -0
  418. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_g/_gBBeMa010DUV34oUrDujAlUOj49g6QzDt-C5IKYQrQ.cache +1 -0
  419. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_r/_rVuG9yGnPR6hv4H6gqEYypbFnJjt2h_VXbdvHbASgk.cache +0 -0
  420. data/test/dummy/tmp/cache/assets/sprockets/v3.0/a1/a1D4bnDagns7ADr1TbghjxXhH2kQyWVyb_-GKUHiiMA.cache +5 -0
  421. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aA/aAD72vIH7L3KyJkCrk2w4yCd-vD1ubyMcadGJg6E4sU.cache +0 -0
  422. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aJ/aJdZdyFA6FZlrmMyRqkfsB-WUHeIZn1CA4p7jvtBYyY.cache +1 -0
  423. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aM/aMylVJ_m7mzxSc4s3f4EsqXaVh2qZ7LBBo5sQLNWbQE.cache +1 -0
  424. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aO/aOGMdVzyTgYfeRxCDhdtM0vlLQYmO9dG1eDkMn8xT4o.cache +1 -0
  425. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aY/aYoku5b2gnqUualKyixnXaFTsz-zNWG2TeaBEDKuBvI.cache +3 -0
  426. data/test/dummy/tmp/cache/assets/sprockets/v3.0/a_/a_5u0qbwrqm2iLQoEfr2oLVhPTm4_aRLH21NSk-ng64.cache +1 -0
  427. data/test/dummy/tmp/cache/assets/sprockets/v3.0/an/ansc-yxpLxm-mUPhj4eJL-XgEhHludiVLMhkrhi1xYs.cache +1 -0
  428. data/test/dummy/tmp/cache/assets/sprockets/v3.0/b2/b27t1oQmfqXDmLgIuAp69I4Qgdzu4qN3TdU13EEOdX8.cache +0 -0
  429. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bh/bhADdGRxMpUsw7qjrVZZ2cgNlIv6S6Q00bB-1UxWcis.cache +1 -0
  430. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bv/bv3XSxiErOEr77Z2sTURC_sJyJz1m5neTKP8T4TxELE.cache +4 -0
  431. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c2/c2gjq61xXO3qQTDyuYH93r1cf_27mDmsqocFSGSgrzE.cache +0 -0
  432. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c3/c30JBbcBOEs8gBtsuV7uqAWpIXdtZKtGqaAUedUTg6s.cache +3 -0
  433. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cI/cIymWKZfZGPxQCtvhlRwFxVCeMm2Xt8G5Km-2I5Mq28.cache +1 -0
  434. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cO/cOCIJ3FGoaQ_tP_zHW-gpc0331pP4VJXRaYk_oX6a0Y.cache +0 -0
  435. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cQ/cQK8L4_P3hvTsZCi0ZI8lHoRz_6FrzwOXv-gl2xfHbk.cache +1 -0
  436. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cY/Cy_ObI1j-9i7wjxGShjQ2lMkkUwwgtdBqail2pfgke8.cache +1 -0
  437. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cY/cY2JpKdH--3sMZobHE1KnuqVRy2G7TAMQJHQk0AJVZI.cache +1 -0
  438. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cc/ccUVGjvmS-nbig19Bi8Ni5yCaiPCTc2uFwmy4qGpEI8.cache +1 -0
  439. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ch/ch41pAlE5hM0BcI-5NKArIOKM68dEdNREO3h9q0aNJo.cache +4 -0
  440. data/test/dummy/tmp/cache/assets/sprockets/v3.0/d-/d-aTSxXEdR7XROaAxEZJhIw2nzZCUfaCCKXyHGtuiUE.cache +1 -0
  441. data/test/dummy/tmp/cache/assets/sprockets/v3.0/d5/d5CiqFoIO9r9bc6qceYD8gSF7-3JKXyW2rx9uOvaG6k.cache +3 -0
  442. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dB/dBhIa7VW788UyNm13H6bhtsDWvLZ5lOBnLhKMozMokc.cache +1 -0
  443. data/test/dummy/tmp/cache/assets/sprockets/v3.0/eL/eLubl3xkj_6LVTp8OADOqfSbo7glb41dO7JbBm61s_U.cache +1 -0
  444. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ew/ewEizg6dPr8mfcCs-xqI9aNfgpJdJsnriy2YWYZEgtg.cache +1 -0
  445. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fU/fUarFjB0688tNKYojsTY0Q6AnIQSxitc0Bbg2pH1DFY.cache +0 -0
  446. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fV/fVk9n1loMq7tyRMZ1ABLBNI9cpHLqhjnBevdcqIqwbY.cache +1 -0
  447. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gE/gEBuwzYT4pCORNo7RVlMhYfK_A_TpNQlhO0Z7glpza0.cache +0 -0
  448. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gP/gPcu-zds7oNR34-K6vO_toa_C9dq9yC6YEJsHWcetZE.cache +0 -0
  449. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gT/gTC13k-_pje-P_LWe83hQ9_3C5cinGmG8ckrar4b7vE.cache +0 -0
  450. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hA/hA6P3GNydgkBcThlx43fD7f5i-TNg63kMM9Svq-rFlo.cache +1 -0
  451. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hD/hDeVHkbc0peefzWrGXr3spmE00IcoN61aCJV1B6s3FI.cache +0 -0
  452. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hX/hXvX9Ho9Ca_b7dDXQU2hSXhrtM3ahTHdOngPiX8vaM4.cache +1 -0
  453. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZ/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
  454. data/test/dummy/tmp/cache/assets/sprockets/v3.0/h_/h_mKX-USNiJ58Wkn_nOZm5pSSb7RdaLtDQPLljNPm5c.cache +1 -0
  455. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hi/hiXKlS0Ij0FhF-HT7GOFOaZgPmnaHBTFvpW8xWhUoKY.cache +0 -0
  456. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hq/hqNC-zONlxNBuACvSRXgQbOj05AAU0yZCoYlEmPusGQ.cache +1 -0
  457. data/test/dummy/tmp/cache/assets/sprockets/v3.0/i6/i6rDaD0uIR1_9sE64Bt8WhSJUJehdPWCazZH53p1Krc.cache +0 -0
  458. data/test/dummy/tmp/cache/assets/sprockets/v3.0/iW/iWF3KM-CoYfYewKKFLGqMe6Js4udb5A1VU4dYWiA1ZE.cache +1 -0
  459. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ia/IAQhn04TAAbdns48nWWtFLCRP7sZiJJMZkFhn0KtHpQ.cache +1 -0
  460. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ia/iaRvxoIJppNNUcxq05MJCFE0Nk-ENvQW47PWFaljODI.cache +1 -0
  461. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jO/jOOKv56qYGTil9DG4f7W3SkkpOCBnO7nN4zyB3ijAM0.cache +1 -0
  462. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jQ/jQfDsJh34y9K_Mwt8vn_DsRF4mH2bI-_Kt05c1h3SJk.cache +1 -0
  463. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jy/jyAyM-S8Hv-RVB253BGqNN9kOQuN_CdeFQrxm4xrNpw.cache +0 -0
  464. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kD/kDBJMaikoSvjWq5v0OKCyJkeISOX0NyN_BJawSAyZCw.cache +0 -0
  465. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kl/klszZ9tKNHUzYFO1ghLNJNk46ZyiG7FOL2YiFW1SMeE.cache +0 -0
  466. data/test/dummy/tmp/cache/assets/sprockets/v3.0/l6/l64SzZqDL8VHFagT69MfZsApPKo2XmPfW8qbyJkUtPk.cache +1 -0
  467. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lE/lEbCGczYsapgUQJAHHCUrje4NqIVEV_BFWnKHlHh4QE.cache +1 -0
  468. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lJ/lJllhgvh0nBq0PQX98LMaxhOryhozLqC4XnJt6enwEo.cache +1 -0
  469. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lS/lS-kUvyhgeyfmAxaM23e4HWfL4L72Aza1nhTkAsPU3M.cache +0 -0
  470. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lx/lxrVJxLs2THXTcDZFNAVxInY_7tQH5ShcmzSk0FwS2k.cache +2 -0
  471. data/test/dummy/tmp/cache/assets/sprockets/v3.0/m0/m02y7e4alD7bt814oMoE9pKsn6J0VHON5iQTgBsIOJ0.cache +1 -0
  472. data/test/dummy/tmp/cache/assets/sprockets/v3.0/m3/m3ZU18hx3_j8FTVWlqRoRQu0ZExBwNreJsVXDqRrOkQ.cache +1 -0
  473. data/test/dummy/tmp/cache/assets/sprockets/v3.0/m8/m85R-j44HyTYL0BUo6OsG9Flk8tqbbbSa0vkSEJHWls.cache +1 -0
  474. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mA/mAM3_EvNQ4x_-x7O04k0W8zyWraMIag97FsCraNL0bI.cache +1 -0
  475. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mL/mL7K1nwsub7IX4zOqM9ybwFK-Rn2Fc6KsYuMiIZ5iNk.cache +3 -0
  476. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mq/MqoyNtDyweSEqoUM6Dz4O6NZehwuU1QQWwM7Tu1DcNk.cache +0 -0
  477. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mq/MqtMzKjbIWIAsFVHCgQvQc-W1erjYjPpBIBRQCZ_9lI.cache +1 -0
  478. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mq/mqh2hV4U4F1XcEpjsBes4qAGkzrHfCwK8kcgKy0B5yE.cache +1 -0
  479. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mt/mt-zpRYXztYgjwR4Dttl8uLwsuEvInHraQLkalp2Lvo.cache +1 -0
  480. data/test/dummy/tmp/cache/assets/sprockets/v3.0/n3/n3d4-cXhrHxAkyHeqTt3MUmW87nKrTyWTPR5PXJT1UQ.cache +3 -0
  481. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nS/nSqcTc7ksjMvX7HMvvAN8UNHZcqHgqWJgdk_p7J33yc.cache +3 -0
  482. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nU/nUPt2yJ5F0IzL4X-uFr75K1yjHCNWnWodmSD2Q3ePow.cache +1 -0
  483. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nV/nV9Q_zvI9VVWHGNnvg5UH1bMambdHXhoUl2Klis5Olg.cache +0 -0
  484. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nV/nv6-uIDkR08qX4UAL1wvVMK_wKpA3tfqQOnOU6EPc3c.cache +0 -0
  485. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ng/ngDxvyt1qPWrOuH9Ec5PJ5BIauhFWOT6kUXZOS6JD7k.cache +3 -0
  486. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ni/niVUoVEMUptq6L7GFj6Df_vajoeWEYtSF4BHTsuLmfE.cache +0 -0
  487. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nk/nkMBHmh_iFVgb8ypWr4DtlYsU1ZD3UTSNCzYpXFK8W8.cache +1 -0
  488. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nt/nTZYlARAnG5g8q-U8zWURuU1z9IWX6z-PA6xULEd4tM.cache +4 -0
  489. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nt/nty1vyqRTT9ZwM-VvAOhFwXsiRYbrIIkn1sDryllF4w.cache +1 -0
  490. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ny/nyxTn5bqrlJtoUx8ld3OiNmJi0vYLE2AjAJU_LdgiVU.cache +0 -0
  491. data/test/dummy/tmp/cache/assets/sprockets/v3.0/om/om9sDSCeVCEvLXtZFs7cJ502yuu3DgCV0rJyRFm9Tg0.cache +1 -0
  492. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pD/pDNG0DHssdNdBIQELe4Q-KNK-i0ImuuuzB-15sydB5Q.cache +1 -0
  493. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pD/pDrjNjEg0enP9011qtyeHSapbgbPdVBY837YBvkBvfM.cache +1 -0
  494. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pD/pdB7FVeb2vsK0oEkIQqaKUNjdLf2jxMMI1P1PY6HinY.cache +0 -0
  495. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pE/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
  496. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pF/pFouMoU_fI_irjFY_evjOWSSbbeRkRAWcwsNh9WnweY.cache +1 -0
  497. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pp/ppHKpJghIYfWiR6EnvgPIWpb35vpP2OBaxHL-12Jn1c.cache +3 -0
  498. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pv/pvzfY4ZeIxBDbR0Wyac-jKTZe7zD91qZJMNj-gLEavs.cache +1 -0
  499. data/test/dummy/tmp/cache/assets/sprockets/v3.0/px/pxWUhkjqxrgnxzmySwgzibIVh75PIaNGpw1RBqACDdI.cache +1 -0
  500. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qP/qPSecOgL03_rejsx9qRAFaC2FBN3FPAJUKfY2TifBuA.cache +0 -0
  501. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qd/qd_SRtxWyH8whyF5iehawiV6ZgiN2ELhiTpobL5e_6w.cache +0 -0
  502. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qr/qrUmzvxmLCNSxkxNsaGiEZz-sUiEvCmCmSp28QHQNTI.cache +1 -0
  503. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rU/rUIQboNWOP0FNBERZ0OEgDlCxJu2Ztc-5gWhQUzGZrc.cache +1 -0
  504. data/test/dummy/tmp/cache/assets/sprockets/v3.0/re/rei-92HUQC22z8L2tptN5z712YBu6M23yd3xaFwl0yg.cache +3 -0
  505. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ri/rimBrlzHvkGFU1xaYtO7xWikVuFmZGF92pWMQx8CyzE.cache +3 -0
  506. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sI/sIDUnZiq5Pe_6DxJVAKFX2Eyj8DodsWXpFGJ-n1dYmQ.cache +0 -0
  507. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sY/SyavbFp1xbkYPU8HvFkkhVqx6xFBGECwuqwVy6RbLw8.cache +1 -0
  508. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sY/sYqD_6_DLhWbWmBm4ZOKDNI8bKtF7czThI6GXwmFlMU.cache +0 -0
  509. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sb/sbAN3UaNGrkoCktU4fHA3KF5HRVD39kmr-vf61veyOU.cache +3 -0
  510. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t0/t0DShWYlmKYn-ztyiUhdugXS0bE38VngZ11fm0z14A0.cache +1 -0
  511. data/test/dummy/tmp/cache/assets/sprockets/v3.0/t3/t3tyC5tpIWAypI8HOhLys2DYBLDLrW3KzE1lmOleVU8.cache +1 -0
  512. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tZ/TZHtEy3CiP64NmTlObIU8cOaUPPdkdOZ30f0kqaDxd8.cache +0 -0
  513. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tZ/tZOwipDul1-aTSIEZ80QHAwcqVFkYRLIVv4XLmYgj2k.cache +1 -0
  514. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ts/TSHjblyZ46JIvFP6qf06MT8qLDuQCxLAvwUcImqML64.cache +0 -0
  515. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ts/TSkeC-eU6bKfJsYmspi_oEYsv6pAgvYk2CTjKRc7BlA.cache +0 -0
  516. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ts/tsxgaFTY-T14imbVrZ7Kf8KPluun_Fw_x58uLbN4fNk.cache +2 -0
  517. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uF/uFbaXajtMMDAOXWl6eU5Gmuqy9dwVoLas9Jim7dSg3s.cache +5 -0
  518. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uK/uK2ko5z4BFMcA_o9sD_Fyx5jBBYhQALEnSYm37mv_Lw.cache +0 -0
  519. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uW/uWmVCsrWjr-iOieidZGPG9-5fj96GX3cANB1XROt9bE.cache +1 -0
  520. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ui/ui8eGB_aYgZ0q-aC6cjiPs30BIJ_I9GWCHQQvxGzzXA.cache +1 -0
  521. data/test/dummy/tmp/cache/assets/sprockets/v3.0/v0/v0CmZOmfuQCNGpDkcSlCQMh5vEK-jWEXvLZqvQrC7xo.cache +1 -0
  522. data/test/dummy/tmp/cache/assets/sprockets/v3.0/v5/v5YkfQBmXgVc14PZpSCGIBT-Vdwb9nnis8DLiXogo2U.cache +1 -0
  523. data/test/dummy/tmp/cache/assets/sprockets/v3.0/v5/v5eeLDViPQrO3neRevMDKLMyU7_6NosFkSH2XSDMSVA.cache +1 -0
  524. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vH/VHYlbUy6Drh_r2SAQKaaSQp-vVAs2W995MZXODWMLyk.cache +1 -0
  525. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vH/vHVLf9Kpn7ZIsAjK1wybCRFRnwFm31mSzufZ2E4zwZU.cache +0 -0
  526. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vS/vSXxaWQqvcbpdKaDiLcu6udK12iZKckJjnv6dBesBuE.cache +4 -0
  527. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vy/vyn1m_51cpUyRWnkj68qWZz3Nyxp8uCV3t-vZoNaZQk.cache +1 -0
  528. data/test/dummy/tmp/cache/assets/sprockets/v3.0/vz/vzF4jtIUQmjMF9MSfKi_4r02MBS65jdHdarhNceE2Ow.cache +1 -0
  529. data/test/dummy/tmp/cache/assets/sprockets/v3.0/w6/w63utD1EaQ5L8Dwj4W43hxvR3uWxn8LRkwVEjEscpSk.cache +1 -0
  530. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wQ/wQEuPUtM63wr2c4HK4yAyTcwsWPoIm_aaY61jsvRzho.cache +2 -0
  531. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wZ/wZWBriQjeB0b5NDTDbfXoaIoKbFJdO3yjiRrONUcz6U.cache +1 -0
  532. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wr/wrp9M6KC_3oq6hKcNJ8Kj3MNpzRK1eNrqJWtrr_wlM4.cache +3 -0
  533. data/test/dummy/tmp/cache/assets/sprockets/v3.0/wu/wuq-zoQvtKeWwYJ_KcBURUoJnbqoYuLN3c4vvEooim4.cache +0 -0
  534. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xL/xLAnnuRc4_1YiW2ZFZq8_-NrLMKVabDg07KLgt55YRA.cache +1 -0
  535. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xP/xPjuPqeVIVOwvZZwsoeySDK683g7w9iWJOepuaNVzhI.cache +4 -0
  536. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xW/xWR54YJsohiIkX9ruCOvc1m9gtfIlDxTwffZIeWgArU.cache +1 -0
  537. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xY/xYL-jGrZm_3zo2G6zeNSJLQARo_wgpUIaXUOkIjXvkU.cache +0 -0
  538. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xm/xMTMSeTx9lrHYrKXdRl8VUymkGwUoVoJViTITOWcFB4.cache +3 -0
  539. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xm/xmlC7ZNCBk1FKDSFSCtjBsjhCqsDNbYlGVUq_stMR98.cache +1 -0
  540. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xo/xofRtfVAB-nwa1yUWmi_V23IjMONcrbWq53Gc_dDK6w.cache +3 -0
  541. data/test/dummy/tmp/cache/assets/sprockets/v3.0/y-/y-yZ1fTnCLFsViLVccN9Cc3G2I0da36tG984Ws3z1cY.cache +1 -0
  542. data/test/dummy/tmp/cache/assets/sprockets/v3.0/y6/y6pI8nXIwEcqXWadxbE9ov6tsZyn_s342gGL7l46qbk.cache +1 -0
  543. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yT/yTjZO6YuU6fs__LzxjV8P2xNtxohVIHydCfUMLwpmRA.cache +1 -0
  544. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yf/YF2oZijXWqTKrQUK0VGgz3qlKNbT-6Urm5Kq63shSvY.cache +0 -0
  545. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yf/yfnaaxWyzJ_nUuLfMd7HcNZ37zAkkOj04gjZP4_-FPQ.cache +0 -0
  546. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yw/ywk4t6jo9cZ2Fdvkf_UFbybOk5Y0dOJ8V77Re_BWq-g.cache +1 -0
  547. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zM/zMcsTJgidKVERcnyOt6lwLSGkvBdfd2pBXd5QpyWdCk.cache +0 -0
  548. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zX/zX3isg_XGiX4dTw253dv46c2_6jbOSjoHDsndx_zkws.cache +1 -0
  549. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zn/znmB9J2iEm4qBnXMpaVugIzycbUqf2-bGRYEJhogCSI.cache +1 -0
  550. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zo/zoCcgwkQpt4-DoZZMglIjDhbAqwpdCUS0UhhWCoyU1k.cache +1 -0
  551. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zv/zv4MbZ_Snrtnmt5KJKA0SrpHnm8KSKVpuan4elWJmBA.cache +0 -0
  552. data/test/rails_db_data_table_helper_test.rb +35 -0
  553. data/test/rails_db_test.rb +13 -0
  554. data/test/sql_import_test.rb +16 -0
  555. data/test/sql_query_test.rb +28 -0
  556. data/test/standalone/Gemfile +13 -0
  557. data/test/standalone/Gemfile.lock +140 -0
  558. data/test/standalone/README.rdoc +28 -0
  559. data/test/standalone/Rakefile +6 -0
  560. data/test/standalone/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  561. data/test/standalone/app/assets/fonts/glyphicons-halflings-regular.svg +288 -0
  562. data/test/standalone/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  563. data/test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  564. data/test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  565. data/test/standalone/app/assets/javascripts/application.js +13 -0
  566. data/test/standalone/app/assets/stylesheets/application.css +15 -0
  567. data/test/standalone/app/assets/stylesheets/bootstrap-theme.min.css +5 -0
  568. data/test/standalone/app/assets/stylesheets/bootstrap.min.css +5 -0
  569. data/test/standalone/app/controllers/application_controller.rb +5 -0
  570. data/test/standalone/app/controllers/home_controller.rb +7 -0
  571. data/test/standalone/app/helpers/application_helper.rb +2 -0
  572. data/test/standalone/app/views/home/index.html.erb +3 -0
  573. data/test/standalone/app/views/layouts/application.html.erb +16 -0
  574. data/test/standalone/bin/bundle +3 -0
  575. data/test/standalone/bin/rails +4 -0
  576. data/test/standalone/bin/rake +4 -0
  577. data/test/standalone/bin/setup +29 -0
  578. data/test/standalone/config.ru +4 -0
  579. data/test/standalone/config/application.rb +45 -0
  580. data/test/standalone/config/boot.rb +7 -0
  581. data/test/standalone/config/database.yml +0 -0
  582. data/test/standalone/config/environment.rb +5 -0
  583. data/test/standalone/config/environments/development.rb +53 -0
  584. data/test/standalone/config/environments/production.rb +90 -0
  585. data/test/standalone/config/environments/test.rb +54 -0
  586. data/test/standalone/config/initializers/assets.rb +11 -0
  587. data/test/standalone/config/initializers/backtrace_silencers.rb +7 -0
  588. data/test/standalone/config/initializers/cookies_serializer.rb +3 -0
  589. data/test/standalone/config/initializers/filter_parameter_logging.rb +4 -0
  590. data/test/standalone/config/initializers/inflections.rb +16 -0
  591. data/test/standalone/config/initializers/mime_types.rb +7 -0
  592. data/test/standalone/config/initializers/rails_db.rb +23 -0
  593. data/test/standalone/config/initializers/session_store.rb +3 -0
  594. data/test/standalone/config/initializers/wrap_parameters.rb +14 -0
  595. data/test/standalone/config/locales/en.yml +23 -0
  596. data/test/standalone/config/routes.rb +5 -0
  597. data/test/standalone/config/secrets.yml +22 -0
  598. data/test/standalone/public/404.html +67 -0
  599. data/test/standalone/public/422.html +67 -0
  600. data/test/standalone/public/500.html +66 -0
  601. data/test/standalone/public/favicon.ico +0 -0
  602. data/test/table_test.rb +51 -0
  603. data/test/tables_helper_test.rb +35 -0
  604. data/test/test_helper.rb +19 -0
  605. data/test/test_sql_mysql.sql +12 -0
  606. data/test/test_sql_postgres.sql +12 -0
  607. data/test/test_sql_sqlite.sql +5 -0
  608. metadata +1355 -0
File without changes
@@ -0,0 +1,3217 @@
1
+  (0.1ms) DROP TABLE IF EXISTS "accounts"
2
+  (0.3ms) SELECT sqlite_version(*)
3
+  (1.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "users_count" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4
+  (0.1ms) DROP TABLE IF EXISTS "comments"
5
+  (0.7ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6
+  (0.1ms) DROP TABLE IF EXISTS "contacts"
7
+  (1.0ms) CREATE 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)
8
+  (0.7ms) CREATE INDEX "index_contacts_on_name_and_email" ON "contacts" ("name", "email")
9
+  (0.1ms) DROP TABLE IF EXISTS "legacy_accounts"
10
+  (1.1ms) CREATE TABLE "legacy_accounts" ("uuid" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
11
+  (0.2ms) DROP TABLE IF EXISTS "payments"
12
+  (1.2ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal, "project_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
13
+  (0.9ms) CREATE INDEX "index_payments_on_project_id" ON "payments" ("project_id")
14
+  (0.1ms) DROP TABLE IF EXISTS "projects"
15
+  (0.7ms) CREATE 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)
16
+  (0.8ms) CREATE INDEX "index_projects_on_deleted_at" ON "projects" ("deleted_at")
17
+  (0.1ms) DROP TABLE IF EXISTS "projects_users"
18
+  (0.9ms) CREATE TABLE "projects_users" ("project_id" integer, "user_id" integer)
19
+  (0.7ms) CREATE INDEX "index_projects_users_on_project_id" ON "projects_users" ("project_id")
20
+  (0.1ms)  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
+ 
28
+  (1.5ms) CREATE INDEX "index_projects_users_on_user_id" ON "projects_users" ("user_id")
29
+  (0.1ms) DROP TABLE IF EXISTS "users"
30
+  (1.1ms) CREATE 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)
31
+  (1.2ms) CREATE INDEX "index_users_on_account_id" ON "users" ("account_id")
32
+  (0.1ms)  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
+ 
40
+  (1.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
41
+  (0.1ms)  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
+ 
49
+  (0.1ms)  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
+ 
57
+  (0.7ms) CREATE INDEX "index_users_on_salary" ON "users" ("salary")
58
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
59
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
60
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (20180528134358)
61
+  (1.2ms) INSERT 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
+ 
78
+  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
79
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
80
+  (0.1ms) begin transaction
81
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2018-09-16 11:55:50.097537"], ["updated_at", "2018-09-16 11:55:50.097537"]]
82
+  (0.8ms) commit transaction
83
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
84
+  (0.0ms) begin transaction
85
+  (0.0ms) commit transaction
86
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
87
+  (0.1ms) begin transaction
88
+ ------------------------------------
89
+ RailsDbTest: test_verify_access_proc
90
+ ------------------------------------
91
+  (0.1ms) rollback transaction
92
+  (0.1ms) begin transaction
93
+ -----------------------
94
+ RailsDbTest: test_truth
95
+ -----------------------
96
+  (0.1ms) rollback transaction
97
+  (0.0ms) begin transaction
98
+ ----------------------------------------------------------------------------------------------------------------------------------
99
+ TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
100
+ ----------------------------------------------------------------------------------------------------------------------------------
101
+  (0.1ms) rollback transaction
102
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
107
+  (0.1ms) begin transaction
108
+ ----------------------------------------------------------------------------------------------------------------------------
109
+ TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
110
+ ----------------------------------------------------------------------------------------------------------------------------
111
+  (0.0ms) rollback transaction
112
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
117
+  (0.0ms) begin transaction
118
+ -------------------------------------------------------------------------------------------------------------------------
119
+ TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
120
+ -------------------------------------------------------------------------------------------------------------------------
121
+  (0.1ms) rollback transaction
122
+  (0.0ms) begin transaction
123
+ ------------------------------------
124
+ DatabaseTest: test_accessible_tables
125
+ ------------------------------------
126
+  (0.0ms) rollback transaction
127
+  (0.0ms) begin transaction
128
+ --------------------------
129
+ DatabaseTest: test_adapter
130
+ --------------------------
131
+  (0.0ms) rollback transaction
132
+  (0.0ms) begin transaction
133
+ -------------------------
134
+ DatabaseTest: test_insert
135
+ -------------------------
136
+  (0.6ms) delete from projects_users
137
+  (0.1ms) EXPLAIN delete from projects_users
138
+ SQL (0.2ms) DELETE FROM "users"
139
+  (0.1ms) SELECT COUNT(*) FROM projects_users
140
+  (0.1ms) insert into projects_users(project_id, user_id) values(1,2)
141
+  (0.2ms) EXPLAIN insert into projects_users(project_id, user_id) values(1,2)
142
+  (0.1ms) SELECT COUNT(*) FROM projects_users
143
+  (0.6ms) rollback transaction
144
+  (0.1ms) begin transaction
145
+ -------------------------
146
+ DatabaseTest: test_tables
147
+ -------------------------
148
+  (0.0ms) rollback transaction
149
+  (0.0ms) begin transaction
150
+ ------------------------
151
+ DatabaseTest: test_query
152
+ ------------------------
153
+ SQL (0.2ms) DELETE FROM "users"
154
+  (0.1ms) SAVEPOINT active_record_1
155
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:55:50.302921"], ["updated_at", "2018-09-16 11:55:50.302921"]]
156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
157
+  (0.0ms) select count(*) as users_count from users
158
+  (0.1ms) EXPLAIN select count(*) as users_count from users
159
+  (0.4ms) rollback transaction
160
+  (0.0ms) begin transaction
161
+ --------------------------
162
+ SqlImportTest: test_import
163
+ --------------------------
164
+  (0.1ms) update users set age = 11 where id = 1
165
+  (0.0ms) update users set age = 22 where id = 2
166
+  (0.0ms) update users set age = 33 where id = 3
167
+  (0.3ms) 
168
+ CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));
169
+  (0.3ms) rollback transaction
170
+  (0.0ms) begin transaction
171
+ ------------------------------------------------------------------
172
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
173
+ ------------------------------------------------------------------
174
+  (0.0ms) SAVEPOINT active_record_1
175
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:55:50.309230"], ["updated_at", "2018-09-16 11:55:50.309230"]]
176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
177
+  (0.1ms) SELECT * FROM users
178
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (2.5ms)
179
+  (0.4ms) rollback transaction
180
+  (0.0ms) begin transaction
181
+ ----------------------------------------------------------------------------
182
+ RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
183
+ ----------------------------------------------------------------------------
184
+  (0.0ms) SAVEPOINT active_record_1
185
+ SQL (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-16 11:55:50.336103"], ["updated_at", "2018-09-16 11:55:50.336103"]]
186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
187
+  (0.0ms) SELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0
188
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (0.2ms)
189
+  (0.4ms) rollback transaction
190
+  (0.0ms) begin transaction
191
+ ----------------------------------------------------------------------
192
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
193
+ ----------------------------------------------------------------------
194
+  (0.0ms) SAVEPOINT active_record_1
195
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:55:50.339264"], ["updated_at", "2018-09-16 11:55:50.339264"]]
196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
197
+  (0.1ms) select * from users
198
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.8ms)
199
+  (0.5ms) rollback transaction
200
+  (0.0ms) begin transaction
201
+ --------------------------------------------------------------------------------
202
+ RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
203
+ --------------------------------------------------------------------------------
204
+  (0.0ms) SAVEPOINT active_record_1
205
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:55:50.362828"], ["updated_at", "2018-09-16 11:55:50.362828"]]
206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
207
+  (0.1ms) select * from users
208
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.1ms)
209
+  (0.3ms) rollback transaction
210
+  (0.0ms) begin transaction
211
+ ----------------------------------------------
212
+ DashboardControllerTest: test_should_get_index
213
+ ----------------------------------------------
214
+ SQL (0.3ms) DELETE FROM "users"
215
+ SQL (0.1ms) DELETE FROM "accounts"
216
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."type" IN ('Customer')
217
+  (0.0ms) SAVEPOINT active_record_1
218
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:55:50.492227"], ["updated_at", "2018-09-16 11:55:50.492227"]]
219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
220
+  (0.0ms) SAVEPOINT active_record_1
221
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Edit"], ["created_at", "2018-09-16 11:55:50.493137"], ["updated_at", "2018-09-16 11:55:50.493137"]]
222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
223
+  (0.1ms) SAVEPOINT active_record_1
224
+ SQL (0.1ms) INSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  (0.1ms)  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
+ 
248
+  (0.1ms)  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
+ 
256
+  (0.1ms)  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
+ 
264
+  (0.1ms)  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
+ 
272
+  (0.1ms)  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
+ 
280
+  (0.1ms)  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
+ 
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
308
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0
351
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (0.9ms)
352
+  (0.1ms) select id, name, age from users order by age desc limit 10
353
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.6ms)
354
+  (0.1ms) SELECT COUNT(*) FROM "users"
355
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')
356
+  (0.0ms) SELECT COUNT(*) FROM "accounts"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
372
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
386
+  (0.1ms) DELETE FROM users WHERE id = '1';
387
+ Redirected to http://www.example.com/rails/db/tables/users/data
388
+ Completed 302 Found in 7ms (ActiveRecord: 0.4ms)
389
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT * FROM users
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
+  (0.1ms) SELECT * FROM users
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
+  (0.1ms) select * from users limit 10
421
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
437
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
446
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
457
+  Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
466
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
467
+  (0.1ms) SAVEPOINT active_record_1
468
+ SQL (0.1ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "JOHN"], ["updated_at", "2018-09-16 11:55:51.563238"], ["id", 2]]
469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
488
+  (0.1ms) SAVEPOINT active_record_1
489
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "XXX"], ["created_at", "2018-09-16 11:55:51.659600"], ["updated_at", "2018-09-16 11:55:51.659600"]]
490
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+  (0.0ms) SELECT COUNT(*) FROM "users"
500
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
510
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
519
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
520
+  (0.1ms) SAVEPOINT active_record_1
521
+ SQL (0.1ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "STI"], ["updated_at", "2018-09-16 11:55:51.780734"], ["id", 3]]
522
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Customer Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ? [["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
+  (1.9ms) rollback transaction
549
+  (0.1ms) begin transaction
550
+ ----------------------
551
+ TableTest: test_delete
552
+ ----------------------
553
+ SQL (0.2ms) DELETE FROM "users"
554
+  (0.1ms) SAVEPOINT active_record_1
555
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:55:51.810339"], ["updated_at", "2018-09-16 11:55:51.810339"]]
556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
557
+  (0.0ms) SAVEPOINT active_record_1
558
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "john"], ["created_at", "2018-09-16 11:55:51.811630"], ["updated_at", "2018-09-16 11:55:51.811630"]]
559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
560
+  (0.1ms) SELECT COUNT(*) FROM "users"
561
+  (0.1ms) DELETE FROM users WHERE id = 1;
562
+  (0.1ms) SELECT COUNT(*) FROM "users"
563
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "igor"]]
564
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "john"]]
565
+  (0.4ms) rollback transaction
566
+  (0.0ms) begin transaction
567
+ ----------------------
568
+ TableTest: test_to_csv
569
+ ----------------------
570
+  (0.0ms) SAVEPOINT active_record_1
571
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:55:51.816101"], ["updated_at", "2018-09-16 11:55:51.816101"]]
572
+  (0.1ms) RELEASE SAVEPOINT active_record_1
573
+  (0.1ms) SELECT * FROM users
574
+  (0.4ms) rollback transaction
575
+  (0.1ms) begin transaction
576
+ -----------------------
577
+ TableTest: test_columns
578
+ -----------------------
579
+  (0.1ms) rollback transaction
580
+  (0.0ms) begin transaction
581
+ ------------------------
582
+ TableTest: test_as_table
583
+ ------------------------
584
+ SQL (0.2ms) DELETE FROM "users"
585
+  (0.0ms) SAVEPOINT active_record_1
586
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:55:51.821036"], ["updated_at", "2018-09-16 11:55:51.821036"]]
587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
588
+  (0.1ms) SELECT COUNT(*) FROM "users"
589
+  Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
590
+  (0.5ms) rollback transaction
591
+  (0.1ms) begin transaction
592
+ ---------------------------
593
+ TableTest: test_primary_key
594
+ ---------------------------
595
+  (0.0ms) rollback transaction
596
+  (0.1ms) begin transaction
597
+ ------------------------
598
+ TableTest: test_truncate
599
+ ------------------------
600
+ SQL (0.2ms) DELETE FROM "users"
601
+  (0.0ms) SAVEPOINT active_record_1
602
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:55:51.850277"], ["updated_at", "2018-09-16 11:55:51.850277"]]
603
+  (0.0ms) RELEASE SAVEPOINT active_record_1
604
+  (0.0ms) SELECT COUNT(*) FROM "users"
605
+  (0.0ms) DELETE FROM users;
606
+  (0.0ms) SELECT COUNT(*) FROM "users"
607
+  (0.3ms) rollback transaction
608
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
609
+  (0.1ms) begin transaction
610
+ ----------------------------------------------
611
+ DashboardControllerTest: test_should_get_index
612
+ ----------------------------------------------
613
+ SQL (1.7ms) DELETE FROM "users"
614
+ SQL (0.5ms) DELETE FROM "accounts"
615
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."type" IN ('Customer')
616
+  (0.1ms) SAVEPOINT active_record_1
617
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:58:56.204208"], ["updated_at", "2018-09-16 11:58:56.204208"]]
618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
619
+  (0.0ms) SAVEPOINT active_record_1
620
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Edit"], ["created_at", "2018-09-16 11:58:56.205823"], ["updated_at", "2018-09-16 11:58:56.205823"]]
621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
622
+  (0.0ms) SAVEPOINT active_record_1
623
+ SQL (0.1ms) INSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  (0.1ms)  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
+ 
647
+  (0.1ms)  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
+ 
655
+  (0.0ms)  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
+ 
663
+  (0.1ms)  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
+ 
671
+  (0.1ms)  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
+ 
679
+  (0.0ms)  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
+ 
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
707
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.3ms) SELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0
750
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (1.7ms)
751
+  (0.2ms) select id, name, age from users order by age desc limit 10
752
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (1.0ms)
753
+  (0.1ms) SELECT COUNT(*) FROM "users"
754
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')
755
+  (0.1ms) SELECT COUNT(*) FROM "accounts"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
771
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
785
+  (0.0ms) DELETE FROM users WHERE id = '1';
786
+ Redirected to http://www.example.com/rails/db/tables/users/data
787
+ Completed 302 Found in 10ms (ActiveRecord: 0.4ms)
788
+  (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT * FROM users
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
+  (0.1ms) SELECT * FROM users
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
+  (0.1ms) select * from users limit 10
820
+  (0.2ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
836
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
845
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
856
+  Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
865
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
866
+  (0.1ms) SAVEPOINT active_record_1
867
+ SQL (0.4ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "JOHN"], ["updated_at", "2018-09-16 11:58:56.964649"], ["id", 2]]
868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
887
+  (0.1ms) SAVEPOINT active_record_1
888
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "XXX"], ["created_at", "2018-09-16 11:58:57.052568"], ["updated_at", "2018-09-16 11:58:57.052568"]]
889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
899
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
909
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
918
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
919
+  (0.1ms) SAVEPOINT active_record_1
920
+ SQL (0.1ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "STI"], ["updated_at", "2018-09-16 11:58:57.182778"], ["id", 3]]
921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Customer Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ? [["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
+  (1.9ms) rollback transaction
948
+  (0.1ms) begin transaction
949
+ ------------------------
950
+ TableTest: test_as_table
951
+ ------------------------
952
+ SQL (0.2ms) DELETE FROM "users"
953
+  (0.0ms) SAVEPOINT active_record_1
954
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:58:57.210492"], ["updated_at", "2018-09-16 11:58:57.210492"]]
955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
956
+  (0.1ms) SELECT COUNT(*) FROM "users"
957
+  Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
958
+  (0.4ms) rollback transaction
959
+  (0.0ms) begin transaction
960
+ -----------------------
961
+ TableTest: test_columns
962
+ -----------------------
963
+  (0.0ms) rollback transaction
964
+  (0.1ms) begin transaction
965
+ ----------------------
966
+ TableTest: test_delete
967
+ ----------------------
968
+ SQL (0.3ms) DELETE FROM "users"
969
+  (0.0ms) SAVEPOINT active_record_1
970
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:58:57.228686"], ["updated_at", "2018-09-16 11:58:57.228686"]]
971
+  (0.1ms) RELEASE SAVEPOINT active_record_1
972
+  (0.0ms) SAVEPOINT active_record_1
973
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "john"], ["created_at", "2018-09-16 11:58:57.230053"], ["updated_at", "2018-09-16 11:58:57.230053"]]
974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
975
+  (0.0ms) SELECT COUNT(*) FROM "users"
976
+  (0.1ms) DELETE FROM users WHERE id = 1;
977
+  (0.0ms) SELECT COUNT(*) FROM "users"
978
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "igor"]]
979
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "john"]]
980
+  (0.8ms) rollback transaction
981
+  (0.1ms) begin transaction
982
+ ---------------------------
983
+ TableTest: test_primary_key
984
+ ---------------------------
985
+  (0.1ms) rollback transaction
986
+  (0.1ms) begin transaction
987
+ ----------------------
988
+ TableTest: test_to_csv
989
+ ----------------------
990
+  (0.0ms) SAVEPOINT active_record_1
991
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:58:57.238411"], ["updated_at", "2018-09-16 11:58:57.238411"]]
992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
993
+  (0.1ms) SELECT * FROM users
994
+  (0.5ms) rollback transaction
995
+  (0.0ms) begin transaction
996
+ ------------------------
997
+ TableTest: test_truncate
998
+ ------------------------
999
+ SQL (0.2ms) DELETE FROM "users"
1000
+  (0.0ms) SAVEPOINT active_record_1
1001
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:58:57.241889"], ["updated_at", "2018-09-16 11:58:57.241889"]]
1002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1003
+  (0.0ms) SELECT COUNT(*) FROM "users"
1004
+  (0.0ms) DELETE FROM users;
1005
+  (0.0ms) SELECT COUNT(*) FROM "users"
1006
+  (0.4ms) rollback transaction
1007
+  (0.1ms) begin transaction
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
+  (0.2ms) rollback transaction
1012
+  (0.0ms) begin transaction
1013
+ ----------------------------------------------------------------------------------------------------------------------------------
1014
+ TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
1015
+ ----------------------------------------------------------------------------------------------------------------------------------
1016
+  (0.1ms) rollback transaction
1017
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1022
+  (0.4ms) begin transaction
1023
+ ----------------------------------------------------------------------------------------------------------------------------
1024
+ TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
1025
+ ----------------------------------------------------------------------------------------------------------------------------
1026
+  (0.1ms) rollback transaction
1027
+  (0.1ms) begin transaction
1028
+ -------------------------------------------------------------------------------------------------------------------------
1029
+ TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
1030
+ -------------------------------------------------------------------------------------------------------------------------
1031
+  (0.1ms) rollback transaction
1032
+  (0.0ms) begin transaction
1033
+ ----------------------------------------------------------------------
1034
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
1035
+ ----------------------------------------------------------------------
1036
+  (0.1ms) SAVEPOINT active_record_1
1037
+ SQL (1.0ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:58:57.259173"], ["updated_at", "2018-09-16 11:58:57.259173"]]
1038
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1039
+  (0.1ms) select * from users
1040
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (1.1ms)
1041
+  (0.6ms) rollback transaction
1042
+  (0.0ms) begin transaction
1043
+ --------------------------------------------------------------------------------
1044
+ RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
1045
+ --------------------------------------------------------------------------------
1046
+  (0.0ms) SAVEPOINT active_record_1
1047
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:58:57.288255"], ["updated_at", "2018-09-16 11:58:57.288255"]]
1048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1049
+  (0.1ms) select * from users
1050
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.2ms)
1051
+  (0.4ms) rollback transaction
1052
+  (0.0ms) begin transaction
1053
+ ----------------------------------------------------------------------------
1054
+ RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
1055
+ ----------------------------------------------------------------------------
1056
+  (0.0ms) SAVEPOINT active_record_1
1057
+ SQL (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-16 11:58:57.291591"], ["updated_at", "2018-09-16 11:58:57.291591"]]
1058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1059
+  (0.1ms) SELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0
1060
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (1.1ms)
1061
+  (0.4ms) rollback transaction
1062
+  (0.1ms) begin transaction
1063
+ ------------------------------------------------------------------
1064
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
1065
+ ------------------------------------------------------------------
1066
+  (0.1ms) SAVEPOINT active_record_1
1067
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:58:57.317634"], ["updated_at", "2018-09-16 11:58:57.317634"]]
1068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1069
+  (0.1ms) SELECT * FROM users
1070
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (1.1ms)
1071
+  (0.4ms) rollback transaction
1072
+  (0.0ms) begin transaction
1073
+ ------------------------
1074
+ DatabaseTest: test_query
1075
+ ------------------------
1076
+ SQL (0.2ms) DELETE FROM "users"
1077
+  (0.0ms) SAVEPOINT active_record_1
1078
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:58:57.322205"], ["updated_at", "2018-09-16 11:58:57.322205"]]
1079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080
+  (0.0ms) select count(*) as users_count from users
1081
+  (0.1ms) EXPLAIN select count(*) as users_count from users
1082
+  (0.4ms) rollback transaction
1083
+  (0.0ms) begin transaction
1084
+ -------------------------
1085
+ DatabaseTest: test_tables
1086
+ -------------------------
1087
+  (0.0ms) rollback transaction
1088
+  (0.1ms) begin transaction
1089
+ ------------------------------------
1090
+ DatabaseTest: test_accessible_tables
1091
+ ------------------------------------
1092
+  (0.0ms) rollback transaction
1093
+  (0.1ms) begin transaction
1094
+ --------------------------
1095
+ DatabaseTest: test_adapter
1096
+ --------------------------
1097
+  (0.0ms) rollback transaction
1098
+  (0.0ms) begin transaction
1099
+ -------------------------
1100
+ DatabaseTest: test_insert
1101
+ -------------------------
1102
+  (1.1ms) delete from projects_users
1103
+  (0.1ms) EXPLAIN delete from projects_users
1104
+ SQL (0.1ms) DELETE FROM "users"
1105
+  (0.1ms) SELECT COUNT(*) FROM projects_users
1106
+  (0.0ms) insert into projects_users(project_id, user_id) values(1,2)
1107
+  (0.1ms) EXPLAIN insert into projects_users(project_id, user_id) values(1,2)
1108
+  (0.0ms) SELECT COUNT(*) FROM projects_users
1109
+  (0.4ms) rollback transaction
1110
+  (0.0ms) begin transaction
1111
+ --------------------------
1112
+ SqlImportTest: test_import
1113
+ --------------------------
1114
+  (0.1ms) update users set age = 11 where id = 1
1115
+  (0.0ms) update users set age = 22 where id = 2
1116
+  (0.0ms) update users set age = 33 where id = 3
1117
+  (0.3ms) 
1118
+ CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));
1119
+  (0.5ms) rollback transaction
1120
+  (0.1ms) begin transaction
1121
+ -----------------------
1122
+ RailsDbTest: test_truth
1123
+ -----------------------
1124
+  (0.0ms) rollback transaction
1125
+  (0.0ms) begin transaction
1126
+ ------------------------------------
1127
+ RailsDbTest: test_verify_access_proc
1128
+ ------------------------------------
1129
+  (5.6ms) rollback transaction
1130
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1131
+  (0.1ms) begin transaction
1132
+ -------------------------
1133
+ DatabaseTest: test_tables
1134
+ -------------------------
1135
+  (0.0ms) rollback transaction
1136
+  (0.1ms) begin transaction
1137
+ --------------------------
1138
+ DatabaseTest: test_adapter
1139
+ --------------------------
1140
+  (0.0ms) rollback transaction
1141
+  (0.0ms) begin transaction
1142
+ -------------------------
1143
+ DatabaseTest: test_insert
1144
+ -------------------------
1145
+  (1.4ms) delete from projects_users
1146
+  (0.1ms) EXPLAIN delete from projects_users
1147
+ SQL (1.3ms) DELETE FROM "users"
1148
+  (0.1ms) SELECT COUNT(*) FROM projects_users
1149
+  (0.1ms) insert into projects_users(project_id, user_id) values(1,2)
1150
+  (0.1ms) EXPLAIN insert into projects_users(project_id, user_id) values(1,2)
1151
+  (0.1ms) SELECT COUNT(*) FROM projects_users
1152
+  (0.5ms) rollback transaction
1153
+  (0.1ms) begin transaction
1154
+ ------------------------
1155
+ DatabaseTest: test_query
1156
+ ------------------------
1157
+ SQL (0.2ms) DELETE FROM "users"
1158
+  (0.1ms) SAVEPOINT active_record_1
1159
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:59:30.549941"], ["updated_at", "2018-09-16 11:59:30.549941"]]
1160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1161
+  (0.1ms) select count(*) as users_count from users
1162
+  (0.1ms) EXPLAIN select count(*) as users_count from users
1163
+  (0.4ms) rollback transaction
1164
+  (0.1ms) begin transaction
1165
+ ------------------------------------
1166
+ DatabaseTest: test_accessible_tables
1167
+ ------------------------------------
1168
+  (0.0ms) rollback transaction
1169
+  (0.0ms) begin transaction
1170
+ ------------------------
1171
+ TableTest: test_as_table
1172
+ ------------------------
1173
+ SQL (0.2ms) DELETE FROM "users"
1174
+  (0.0ms) SAVEPOINT active_record_1
1175
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:59:30.554934"], ["updated_at", "2018-09-16 11:59:30.554934"]]
1176
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1177
+  (0.1ms) SELECT COUNT(*) FROM "users"
1178
+  Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
1179
+  (0.5ms) rollback transaction
1180
+  (0.1ms) begin transaction
1181
+ -----------------------
1182
+ TableTest: test_columns
1183
+ -----------------------
1184
+  (0.0ms) rollback transaction
1185
+  (0.0ms) begin transaction
1186
+ ----------------------
1187
+ TableTest: test_delete
1188
+ ----------------------
1189
+ SQL (0.2ms) DELETE FROM "users"
1190
+  (0.0ms) SAVEPOINT active_record_1
1191
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:59:30.574297"], ["updated_at", "2018-09-16 11:59:30.574297"]]
1192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1193
+  (0.1ms) SAVEPOINT active_record_1
1194
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "john"], ["created_at", "2018-09-16 11:59:30.575418"], ["updated_at", "2018-09-16 11:59:30.575418"]]
1195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1196
+  (0.1ms) SELECT COUNT(*) FROM "users"
1197
+  (0.1ms) DELETE FROM users WHERE id = 1;
1198
+  (0.0ms) SELECT COUNT(*) FROM "users"
1199
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "igor"]]
1200
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "john"]]
1201
+  (0.8ms) rollback transaction
1202
+  (0.1ms) begin transaction
1203
+ ----------------------
1204
+ TableTest: test_to_csv
1205
+ ----------------------
1206
+  (0.0ms) SAVEPOINT active_record_1
1207
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:59:30.580220"], ["updated_at", "2018-09-16 11:59:30.580220"]]
1208
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1209
+  (0.1ms) SELECT * FROM users
1210
+  (0.3ms) rollback transaction
1211
+  (0.1ms) begin transaction
1212
+ ---------------------------
1213
+ TableTest: test_primary_key
1214
+ ---------------------------
1215
+  (0.0ms) rollback transaction
1216
+  (0.0ms) begin transaction
1217
+ ------------------------
1218
+ TableTest: test_truncate
1219
+ ------------------------
1220
+ SQL (0.2ms) DELETE FROM "users"
1221
+  (0.0ms) SAVEPOINT active_record_1
1222
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-16 11:59:30.584952"], ["updated_at", "2018-09-16 11:59:30.584952"]]
1223
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1224
+  (0.0ms) SELECT COUNT(*) FROM "users"
1225
+  (0.0ms) DELETE FROM users;
1226
+  (0.0ms) SELECT COUNT(*) FROM "users"
1227
+  (0.3ms) rollback transaction
1228
+  (0.0ms) begin transaction
1229
+ --------------------------------------------------------------------------------
1230
+ RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
1231
+ --------------------------------------------------------------------------------
1232
+  (0.1ms) SAVEPOINT active_record_1
1233
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:59:30.589809"], ["updated_at", "2018-09-16 11:59:30.589809"]]
1234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1235
+  (0.1ms) select * from users
1236
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (1.7ms)
1237
+  (0.4ms) rollback transaction
1238
+  (0.0ms) begin transaction
1239
+ ----------------------------------------------------------------------------
1240
+ RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
1241
+ ----------------------------------------------------------------------------
1242
+  (0.1ms) SAVEPOINT active_record_1
1243
+ SQL (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-16 11:59:30.615325"], ["updated_at", "2018-09-16 11:59:30.615325"]]
1244
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1245
+  (0.3ms) SELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0
1246
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (2.3ms)
1247
+  (0.4ms) rollback transaction
1248
+  (0.2ms) begin transaction
1249
+ ----------------------------------------------------------------------
1250
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
1251
+ ----------------------------------------------------------------------
1252
+  (0.1ms) SAVEPOINT active_record_1
1253
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:59:30.644567"], ["updated_at", "2018-09-16 11:59:30.644567"]]
1254
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1255
+  (0.2ms) select * from users
1256
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.3ms)
1257
+  (0.4ms) rollback transaction
1258
+  (0.0ms) begin transaction
1259
+ ------------------------------------------------------------------
1260
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
1261
+ ------------------------------------------------------------------
1262
+  (0.0ms) SAVEPOINT active_record_1
1263
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:59:30.650361"], ["updated_at", "2018-09-16 11:59:30.650361"]]
1264
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1265
+  (0.4ms) SELECT * FROM users
1266
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (3.0ms)
1267
+  (0.6ms) rollback transaction
1268
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
1273
+  (0.2ms) begin transaction
1274
+ ----------------------------------------------------------------------------------------------------------------------------------
1275
+ TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
1276
+ ----------------------------------------------------------------------------------------------------------------------------------
1277
+  (0.1ms) rollback transaction
1278
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1283
+  (0.1ms) begin transaction
1284
+ ----------------------------------------------------------------------------------------------------------------------------
1285
+ TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
1286
+ ----------------------------------------------------------------------------------------------------------------------------
1287
+  (0.0ms) rollback transaction
1288
+  (0.1ms) begin transaction
1289
+ -------------------------------------------------------------------------------------------------------------------------
1290
+ TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
1291
+ -------------------------------------------------------------------------------------------------------------------------
1292
+  (0.0ms) rollback transaction
1293
+  (0.0ms) begin transaction
1294
+ --------------------------
1295
+ SqlImportTest: test_import
1296
+ --------------------------
1297
+  (0.1ms) update users set age = 11 where id = 1
1298
+  (0.0ms) update users set age = 22 where id = 2
1299
+  (0.0ms) update users set age = 33 where id = 3
1300
+  (0.3ms) 
1301
+ CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));
1302
+  (0.8ms) rollback transaction
1303
+  (0.1ms) begin transaction
1304
+ ----------------------------------------------
1305
+ DashboardControllerTest: test_should_get_index
1306
+ ----------------------------------------------
1307
+ SQL (0.5ms) DELETE FROM "users"
1308
+ SQL (0.5ms) DELETE FROM "accounts"
1309
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."type" IN ('Customer')
1310
+  (0.0ms) SAVEPOINT active_record_1
1311
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-16 11:59:30.839211"], ["updated_at", "2018-09-16 11:59:30.839211"]]
1312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1313
+  (0.0ms) SAVEPOINT active_record_1
1314
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Edit"], ["created_at", "2018-09-16 11:59:30.840551"], ["updated_at", "2018-09-16 11:59:30.840551"]]
1315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1316
+  (0.1ms) SAVEPOINT active_record_1
1317
+ SQL (0.1ms) INSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  (0.1ms)  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
+ 
1341
+  (0.1ms)  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
+ 
1349
+  (0.1ms)  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
+ 
1357
+  (0.1ms)  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
+ 
1365
+  (0.1ms)  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
+ 
1373
+  (0.1ms)  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
+ 
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.1ms) SELECT COUNT(*) FROM "users"
1401
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0
1444
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (0.9ms)
1445
+  (0.1ms) select id, name, age from users order by age desc limit 10
1446
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.6ms)
1447
+  (0.1ms) SELECT COUNT(*) FROM "users"
1448
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')
1449
+  (0.0ms) SELECT COUNT(*) FROM "accounts"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
1465
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
1479
+  (0.1ms) DELETE FROM users WHERE id = '1';
1480
+ Redirected to http://www.example.com/rails/db/tables/users/data
1481
+ Completed 302 Found in 8ms (ActiveRecord: 0.4ms)
1482
+  (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT * FROM users
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
+  (0.1ms) SELECT * FROM users
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
+  (0.1ms) select * from users limit 10
1514
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
1530
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
1539
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
1550
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
1559
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
1560
+  (0.1ms) SAVEPOINT active_record_1
1561
+ SQL (0.1ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "JOHN"], ["updated_at", "2018-09-16 11:59:31.734464"], ["id", 2]]
1562
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.3ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
1581
+  (0.1ms) SAVEPOINT active_record_1
1582
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "XXX"], ["created_at", "2018-09-16 11:59:31.864887"], ["updated_at", "2018-09-16 11:59:31.864887"]]
1583
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
1593
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
1603
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.2ms) SELECT COUNT(*) FROM "users"
1612
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
1613
+  (0.1ms) SAVEPOINT active_record_1
1614
+ SQL (0.4ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "STI"], ["updated_at", "2018-09-16 11:59:32.054666"], ["id", 3]]
1615
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ Customer Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ? [["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
+  (1.8ms) rollback transaction
1642
+  (0.0ms) begin transaction
1643
+ -----------------------
1644
+ RailsDbTest: test_truth
1645
+ -----------------------
1646
+  (0.0ms) rollback transaction
1647
+  (0.0ms) begin transaction
1648
+ ------------------------------------
1649
+ RailsDbTest: test_verify_access_proc
1650
+ ------------------------------------
1651
+  (0.0ms) rollback transaction
1652
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
1653
+  (0.1ms) begin transaction
1654
+ --------------------------
1655
+ SqlImportTest: test_import
1656
+ --------------------------
1657
+  (0.3ms) update users set age = 11 where id = 1
1658
+  (0.1ms) update users set age = 22 where id = 2
1659
+  (0.1ms) update users set age = 33 where id = 3
1660
+  (0.8ms) 
1661
+ CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));
1662
+  (0.7ms) rollback transaction
1663
+  (0.0ms) begin transaction
1664
+ ----------------------------------------------------------------------------------------------------------------------------------
1665
+ TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
1666
+ ----------------------------------------------------------------------------------------------------------------------------------
1667
+  (0.1ms) rollback transaction
1668
+  (0.0ms) begin transaction
1669
+ ----------------------------------------------------------------------------------------------------------------------------
1670
+ TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
1671
+ ----------------------------------------------------------------------------------------------------------------------------
1672
+  (0.0ms) rollback transaction
1673
+  (0.1ms) begin transaction
1674
+ -------------------------------------------------------------------------------------------------------------------------
1675
+ TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
1676
+ -------------------------------------------------------------------------------------------------------------------------
1677
+  (0.0ms) rollback transaction
1678
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
1683
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
1688
+  (0.0ms) begin transaction
1689
+ ----------------------
1690
+ TableTest: test_delete
1691
+ ----------------------
1692
+ SQL (0.7ms) DELETE FROM "users"
1693
+  (0.1ms) SAVEPOINT active_record_1
1694
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 05:02:09.143150"], ["updated_at", "2018-09-17 05:02:09.143150"]]
1695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1696
+  (0.0ms) SAVEPOINT active_record_1
1697
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "john"], ["created_at", "2018-09-17 05:02:09.144704"], ["updated_at", "2018-09-17 05:02:09.144704"]]
1698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1699
+  (0.1ms) SELECT COUNT(*) FROM "users"
1700
+  (0.1ms) DELETE FROM users WHERE id = 1;
1701
+  (0.0ms) SELECT COUNT(*) FROM "users"
1702
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "igor"]]
1703
+  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "john"]]
1704
+  (0.4ms) rollback transaction
1705
+  (0.0ms) begin transaction
1706
+ ------------------------
1707
+ TableTest: test_truncate
1708
+ ------------------------
1709
+ SQL (0.2ms) DELETE FROM "users"
1710
+  (0.0ms) SAVEPOINT active_record_1
1711
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 05:02:09.148637"], ["updated_at", "2018-09-17 05:02:09.148637"]]
1712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1713
+  (0.0ms) SELECT COUNT(*) FROM "users"
1714
+  (0.0ms) DELETE FROM users;
1715
+  (0.0ms) SELECT COUNT(*) FROM "users"
1716
+  (0.4ms) rollback transaction
1717
+  (0.0ms) begin transaction
1718
+ ---------------------------
1719
+ TableTest: test_primary_key
1720
+ ---------------------------
1721
+  (0.0ms) rollback transaction
1722
+  (0.0ms) begin transaction
1723
+ -----------------------
1724
+ TableTest: test_columns
1725
+ -----------------------
1726
+  (0.0ms) rollback transaction
1727
+  (0.0ms) begin transaction
1728
+ ------------------------
1729
+ TableTest: test_as_table
1730
+ ------------------------
1731
+ SQL (1.5ms) DELETE FROM "users"
1732
+  (0.1ms) SAVEPOINT active_record_1
1733
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 05:02:09.154847"], ["updated_at", "2018-09-17 05:02:09.154847"]]
1734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1735
+  (0.1ms) SELECT COUNT(*) FROM "users"
1736
+  Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
1737
+  (0.5ms) rollback transaction
1738
+  (0.1ms) begin transaction
1739
+ ----------------------
1740
+ TableTest: test_to_csv
1741
+ ----------------------
1742
+  (0.1ms) SAVEPOINT active_record_1
1743
+ SQL (0.8ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 05:02:09.170252"], ["updated_at", "2018-09-17 05:02:09.170252"]]
1744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1745
+  (0.2ms) SELECT * FROM users
1746
+  (0.5ms) rollback transaction
1747
+  (0.0ms) begin transaction
1748
+ -----------------------
1749
+ RailsDbTest: test_truth
1750
+ -----------------------
1751
+  (0.0ms) rollback transaction
1752
+  (0.1ms) begin transaction
1753
+ ------------------------------------
1754
+ RailsDbTest: test_verify_access_proc
1755
+ ------------------------------------
1756
+  (0.0ms) rollback transaction
1757
+  (0.0ms) begin transaction
1758
+ --------------------------
1759
+ DatabaseTest: test_adapter
1760
+ --------------------------
1761
+  (0.1ms) rollback transaction
1762
+  (0.0ms) begin transaction
1763
+ -------------------------
1764
+ DatabaseTest: test_insert
1765
+ -------------------------
1766
+  (1.1ms) delete from projects_users
1767
+  (0.1ms) EXPLAIN delete from projects_users
1768
+ SQL (0.1ms) DELETE FROM "users"
1769
+  (0.0ms) SELECT COUNT(*) FROM projects_users
1770
+  (0.0ms) insert into projects_users(project_id, user_id) values(1,2)
1771
+  (0.1ms) EXPLAIN insert into projects_users(project_id, user_id) values(1,2)
1772
+  (0.0ms) SELECT COUNT(*) FROM projects_users
1773
+  (0.4ms) rollback transaction
1774
+  (0.0ms) begin transaction
1775
+ ------------------------
1776
+ DatabaseTest: test_query
1777
+ ------------------------
1778
+ SQL (0.2ms) DELETE FROM "users"
1779
+  (0.0ms) SAVEPOINT active_record_1
1780
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 05:02:09.182865"], ["updated_at", "2018-09-17 05:02:09.182865"]]
1781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1782
+  (0.0ms) select count(*) as users_count from users
1783
+  (0.1ms) EXPLAIN select count(*) as users_count from users
1784
+  (0.3ms) rollback transaction
1785
+  (0.0ms) begin transaction
1786
+ -------------------------
1787
+ DatabaseTest: test_tables
1788
+ -------------------------
1789
+  (0.0ms) rollback transaction
1790
+  (0.0ms) begin transaction
1791
+ ------------------------------------
1792
+ DatabaseTest: test_accessible_tables
1793
+ ------------------------------------
1794
+  (0.0ms) rollback transaction
1795
+  (0.0ms) begin transaction
1796
+ ----------------------------------------------------------------------
1797
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
1798
+ ----------------------------------------------------------------------
1799
+  (0.0ms) SAVEPOINT active_record_1
1800
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 05:02:09.187755"], ["updated_at", "2018-09-17 05:02:09.187755"]]
1801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1802
+  (0.1ms) select * from users
1803
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (1.9ms)
1804
+  (0.9ms) rollback transaction
1805
+  (0.1ms) begin transaction
1806
+ ------------------------------------------------------------------
1807
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
1808
+ ------------------------------------------------------------------
1809
+  (0.1ms) SAVEPOINT active_record_1
1810
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 05:02:09.222466"], ["updated_at", "2018-09-17 05:02:09.222466"]]
1811
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1812
+  (0.1ms) SELECT * FROM users
1813
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (1.8ms)
1814
+  (0.4ms) rollback transaction
1815
+  (0.0ms) begin transaction
1816
+ --------------------------------------------------------------------------------
1817
+ RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
1818
+ --------------------------------------------------------------------------------
1819
+  (0.1ms) SAVEPOINT active_record_1
1820
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 05:02:09.246752"], ["updated_at", "2018-09-17 05:02:09.246752"]]
1821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1822
+  (0.1ms) select * from users
1823
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (0.1ms)
1824
+  (0.5ms) rollback transaction
1825
+  (0.0ms) begin transaction
1826
+ ----------------------------------------------------------------------------
1827
+ RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
1828
+ ----------------------------------------------------------------------------
1829
+  (0.0ms) SAVEPOINT active_record_1
1830
+ SQL (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-17 05:02:09.250019"], ["updated_at", "2018-09-17 05:02:09.250019"]]
1831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1832
+  (0.1ms) SELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0
1833
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (0.3ms)
1834
+  (0.4ms) rollback transaction
1835
+  (0.0ms) begin transaction
1836
+ ----------------------------------------------
1837
+ DashboardControllerTest: test_should_get_index
1838
+ ----------------------------------------------
1839
+ SQL (0.3ms) DELETE FROM "users"
1840
+ SQL (0.6ms) DELETE FROM "accounts"
1841
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."type" IN ('Customer')
1842
+  (0.0ms) SAVEPOINT active_record_1
1843
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 05:02:09.397713"], ["updated_at", "2018-09-17 05:02:09.397713"]]
1844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1845
+  (0.0ms) SAVEPOINT active_record_1
1846
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Edit"], ["created_at", "2018-09-17 05:02:09.398945"], ["updated_at", "2018-09-17 05:02:09.398945"]]
1847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1848
+  (0.0ms) SAVEPOINT active_record_1
1849
+ SQL (0.1ms) INSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  (0.1ms)  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
+ 
1873
+  (0.1ms)  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
+ 
1881
+  (0.1ms)  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
+ 
1889
+  (0.1ms)  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
+ 
1897
+  (0.1ms)  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
+ 
1905
+  (0.1ms)  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
+ 
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
1933
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.2ms) SELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0
1976
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_data_table.html.erb (1.9ms)
1977
+  (0.2ms) select id, name, age from users order by age desc limit 10
1978
+ Rendered /Users/irfanahmed/open_source_projects/rails_db/app/views/rails_db/shared/_sql_result.html.erb (1.0ms)
1979
+  (0.1ms) SELECT COUNT(*) FROM "users"
1980
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')
1981
+  (0.1ms) SELECT COUNT(*) FROM "accounts"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
1997
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2011
+  (0.1ms) DELETE FROM users WHERE id = '1';
2012
+ Redirected to http://www.example.com/rails/db/tables/users/data
2013
+ Completed 302 Found in 10ms (ActiveRecord: 0.6ms)
2014
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT * FROM users
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
+  (0.1ms) SELECT * FROM users
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
+  (0.2ms) select * from users limit 10
2046
+  (0.2ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
2062
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
2071
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2082
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2091
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
2092
+  (0.1ms) SAVEPOINT active_record_1
2093
+ SQL (0.1ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "JOHN"], ["updated_at", "2018-09-17 05:02:10.165625"], ["id", 2]]
2094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2113
+  (0.1ms) SAVEPOINT active_record_1
2114
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "XXX"], ["created_at", "2018-09-17 05:02:10.254743"], ["updated_at", "2018-09-17 05:02:10.254743"]]
2115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2125
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2135
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2144
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
2145
+  (0.1ms) SAVEPOINT active_record_1
2146
+ SQL (0.1ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "STI"], ["updated_at", "2018-09-17 05:02:10.370717"], ["id", 3]]
2147
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ Customer Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ? [["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
+  (2.1ms) rollback transaction
2174
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2175
+  (0.1ms) begin transaction
2176
+ ----------------------------------------------
2177
+ DashboardControllerTest: test_should_get_index
2178
+ ----------------------------------------------
2179
+ SQL (1.6ms) DELETE FROM "users"
2180
+ SQL (0.4ms) DELETE FROM "accounts"
2181
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."type" IN ('Customer')
2182
+  (0.1ms) SAVEPOINT active_record_1
2183
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 10:22:31.480375"], ["updated_at", "2018-09-17 10:22:31.480375"]]
2184
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2185
+  (0.0ms) SAVEPOINT active_record_1
2186
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Edit"], ["created_at", "2018-09-17 10:22:31.482321"], ["updated_at", "2018-09-17 10:22:31.482321"]]
2187
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2188
+  (0.1ms) SAVEPOINT active_record_1
2189
+ SQL (0.1ms) INSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  (0.1ms)  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
+ 
2213
+  (0.1ms)  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
+ 
2221
+  (0.1ms)  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
+ 
2229
+  (0.1ms)  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
+ 
2237
+  (0.1ms)  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
+ 
2245
+  (0.1ms)  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
+ 
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
2273
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.3ms) SELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0
2316
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (1.9ms)
2317
+  (0.2ms) select id, name, age from users order by age desc limit 10
2318
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (1.0ms)
2319
+  (0.1ms) SELECT COUNT(*) FROM "users"
2320
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')
2321
+  (0.1ms) SELECT COUNT(*) FROM "accounts"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
2337
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2351
+  (0.1ms) DELETE FROM users WHERE id = '1';
2352
+ Redirected to http://www.example.com/rails/db/tables/users/data
2353
+ Completed 302 Found in 15ms (ActiveRecord: 0.5ms)
2354
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT * FROM users
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
+  (0.1ms) SELECT * FROM users
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
+  (0.1ms) select * from users limit 10
2386
+  (0.2ms) EXPLAIN select * from users limit 10
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
+  (0.2ms) select * from users limit 10
2402
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
2411
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2422
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2431
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
2432
+  (0.1ms) SAVEPOINT active_record_1
2433
+ SQL (0.1ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "JOHN"], ["updated_at", "2018-09-17 10:22:32.642904"], ["id", 2]]
2434
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2453
+  (0.1ms) SAVEPOINT active_record_1
2454
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "XXX"], ["created_at", "2018-09-17 10:22:32.737067"], ["updated_at", "2018-09-17 10:22:32.737067"]]
2455
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+  (0.0ms) SELECT COUNT(*) FROM "users"
2465
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
2475
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.2ms) SELECT COUNT(*) FROM "users"
2484
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
2485
+  (0.1ms) SAVEPOINT active_record_1
2486
+ SQL (0.1ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "STI"], ["updated_at", "2018-09-17 10:22:32.867049"], ["id", 3]]
2487
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ Customer Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ? [["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
+  (2.0ms) rollback transaction
2514
+  (0.0ms) begin transaction
2515
+ ------------------------------------
2516
+ RailsDbTest: test_verify_access_proc
2517
+ ------------------------------------
2518
+  (0.0ms) rollback transaction
2519
+  (0.0ms) begin transaction
2520
+ -----------------------
2521
+ RailsDbTest: test_truth
2522
+ -----------------------
2523
+  (0.0ms) rollback transaction
2524
+  (0.0ms) begin transaction
2525
+ ------------------------
2526
+ TableTest: test_truncate
2527
+ ------------------------
2528
+ SQL (0.2ms) DELETE FROM "users"
2529
+  (0.0ms) SAVEPOINT active_record_1
2530
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 10:22:32.893910"], ["updated_at", "2018-09-17 10:22:32.893910"]]
2531
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2532
+  (0.0ms) SELECT COUNT(*) FROM "users"
2533
+  (0.0ms) DELETE FROM users;
2534
+  (0.0ms) SELECT COUNT(*) FROM "users"
2535
+  (0.5ms) rollback transaction
2536
+  (0.1ms) begin transaction
2537
+ ---------------------------
2538
+ TableTest: test_primary_key
2539
+ ---------------------------
2540
+  (0.0ms) rollback transaction
2541
+  (0.0ms) begin transaction
2542
+ ----------------------
2543
+ TableTest: test_to_csv
2544
+ ----------------------
2545
+  (0.0ms) SAVEPOINT active_record_1
2546
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 10:22:32.897937"], ["updated_at", "2018-09-17 10:22:32.897937"]]
2547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2548
+  (0.1ms) SELECT * FROM users
2549
+  (0.4ms) rollback transaction
2550
+  (0.1ms) begin transaction
2551
+ ------------------------
2552
+ TableTest: test_as_table
2553
+ ------------------------
2554
+ SQL (0.2ms) DELETE FROM "users"
2555
+  (0.1ms) SAVEPOINT active_record_1
2556
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 10:22:32.901700"], ["updated_at", "2018-09-17 10:22:32.901700"]]
2557
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2558
+  (0.1ms) SELECT COUNT(*) FROM "users"
2559
+  Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
2560
+  (0.6ms) rollback transaction
2561
+  (0.1ms) begin transaction
2562
+ -----------------------
2563
+ TableTest: test_columns
2564
+ -----------------------
2565
+  (0.0ms) rollback transaction
2566
+  (0.0ms) begin transaction
2567
+ ----------------------
2568
+ TableTest: test_delete
2569
+ ----------------------
2570
+ SQL (0.2ms) DELETE FROM "users"
2571
+  (0.0ms) SAVEPOINT active_record_1
2572
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 10:22:32.919942"], ["updated_at", "2018-09-17 10:22:32.919942"]]
2573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2574
+  (0.0ms) SAVEPOINT active_record_1
2575
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "john"], ["created_at", "2018-09-17 10:22:32.920944"], ["updated_at", "2018-09-17 10:22:32.920944"]]
2576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2577
+  (0.0ms) SELECT COUNT(*) FROM "users"
2578
+  (0.1ms) DELETE FROM users WHERE id = 1;
2579
+  (0.1ms) SELECT COUNT(*) FROM "users"
2580
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "igor"]]
2581
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "john"]]
2582
+  (0.5ms) rollback transaction
2583
+  (0.1ms) begin transaction
2584
+ -------------------------------------------------------------------------------------------------------------------------
2585
+ TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
2586
+ -------------------------------------------------------------------------------------------------------------------------
2587
+  (0.0ms) rollback transaction
2588
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
2593
+  (0.0ms) begin transaction
2594
+ ----------------------------------------------------------------------------------------------------------------------------
2595
+ TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
2596
+ ----------------------------------------------------------------------------------------------------------------------------
2597
+  (0.0ms) rollback transaction
2598
+  (0.0ms) begin transaction
2599
+ ----------------------------------------------------------------------------------------------------------------------------------
2600
+ TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
2601
+ ----------------------------------------------------------------------------------------------------------------------------------
2602
+  (0.0ms) rollback transaction
2603
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
2608
+  (0.0ms) begin transaction
2609
+ --------------------------
2610
+ SqlImportTest: test_import
2611
+ --------------------------
2612
+  (0.1ms) update users set age = 11 where id = 1
2613
+  (0.1ms) update users set age = 22 where id = 2
2614
+  (0.0ms) update users set age = 33 where id = 3
2615
+  (0.4ms) 
2616
+ CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));
2617
+  (0.4ms) rollback transaction
2618
+  (0.1ms) begin transaction
2619
+ ------------------------------------------------------------------
2620
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
2621
+ ------------------------------------------------------------------
2622
+  (0.1ms) SAVEPOINT active_record_1
2623
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 10:22:32.938054"], ["updated_at", "2018-09-17 10:22:32.938054"]]
2624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2625
+  (0.1ms) SELECT * FROM users
2626
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (1.8ms)
2627
+  (0.8ms) rollback transaction
2628
+  (0.1ms) begin transaction
2629
+ --------------------------------------------------------------------------------
2630
+ RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
2631
+ --------------------------------------------------------------------------------
2632
+  (0.0ms) SAVEPOINT active_record_1
2633
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 10:22:32.965918"], ["updated_at", "2018-09-17 10:22:32.965918"]]
2634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2635
+  (0.1ms) select * from users
2636
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (0.9ms)
2637
+  (0.8ms) rollback transaction
2638
+  (0.0ms) begin transaction
2639
+ ----------------------------------------------------------------------
2640
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
2641
+ ----------------------------------------------------------------------
2642
+  (0.1ms) SAVEPOINT active_record_1
2643
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 10:22:32.990582"], ["updated_at", "2018-09-17 10:22:32.990582"]]
2644
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2645
+  (0.1ms) select * from users
2646
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (0.1ms)
2647
+  (0.4ms) rollback transaction
2648
+  (0.0ms) begin transaction
2649
+ ----------------------------------------------------------------------------
2650
+ RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
2651
+ ----------------------------------------------------------------------------
2652
+  (0.0ms) SAVEPOINT active_record_1
2653
+ SQL (0.5ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-17 10:22:32.995031"], ["updated_at", "2018-09-17 10:22:32.995031"]]
2654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2655
+  (0.1ms) SELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0
2656
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (0.3ms)
2657
+  (0.5ms) rollback transaction
2658
+  (0.1ms) begin transaction
2659
+ --------------------------
2660
+ DatabaseTest: test_adapter
2661
+ --------------------------
2662
+  (0.0ms) rollback transaction
2663
+  (0.0ms) begin transaction
2664
+ -------------------------
2665
+ DatabaseTest: test_insert
2666
+ -------------------------
2667
+  (1.0ms) delete from projects_users
2668
+  (0.1ms) EXPLAIN delete from projects_users
2669
+ SQL (0.1ms) DELETE FROM "users"
2670
+  (0.0ms) SELECT COUNT(*) FROM projects_users
2671
+  (0.0ms) insert into projects_users(project_id, user_id) values(1,2)
2672
+  (0.1ms) EXPLAIN insert into projects_users(project_id, user_id) values(1,2)
2673
+  (0.0ms) SELECT COUNT(*) FROM projects_users
2674
+  (0.4ms) rollback transaction
2675
+  (0.0ms) begin transaction
2676
+ ------------------------
2677
+ DatabaseTest: test_query
2678
+ ------------------------
2679
+ SQL (0.2ms) DELETE FROM "users"
2680
+  (0.0ms) SAVEPOINT active_record_1
2681
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 10:22:33.003796"], ["updated_at", "2018-09-17 10:22:33.003796"]]
2682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2683
+  (0.0ms) select count(*) as users_count from users
2684
+  (0.1ms) EXPLAIN select count(*) as users_count from users
2685
+  (0.4ms) rollback transaction
2686
+  (0.1ms) begin transaction
2687
+ ------------------------------------
2688
+ DatabaseTest: test_accessible_tables
2689
+ ------------------------------------
2690
+  (0.0ms) rollback transaction
2691
+  (0.0ms) begin transaction
2692
+ -------------------------
2693
+ DatabaseTest: test_tables
2694
+ -------------------------
2695
+  (0.1ms) rollback transaction
2696
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2697
+  (0.1ms) begin transaction
2698
+ --------------------------
2699
+ DatabaseTest: test_adapter
2700
+ --------------------------
2701
+  (0.1ms) rollback transaction
2702
+  (0.1ms) begin transaction
2703
+ ------------------------------------
2704
+ DatabaseTest: test_accessible_tables
2705
+ ------------------------------------
2706
+  (0.0ms) rollback transaction
2707
+  (0.0ms) begin transaction
2708
+ -------------------------
2709
+ DatabaseTest: test_insert
2710
+ -------------------------
2711
+  (1.4ms) delete from projects_users
2712
+  (0.1ms) EXPLAIN delete from projects_users
2713
+ SQL (0.7ms) DELETE FROM "users"
2714
+  (0.1ms) SELECT COUNT(*) FROM projects_users
2715
+  (0.1ms) insert into projects_users(project_id, user_id) values(1,2)
2716
+  (0.1ms) EXPLAIN insert into projects_users(project_id, user_id) values(1,2)
2717
+  (0.0ms) SELECT COUNT(*) FROM projects_users
2718
+  (0.4ms) rollback transaction
2719
+  (0.0ms) begin transaction
2720
+ ------------------------
2721
+ DatabaseTest: test_query
2722
+ ------------------------
2723
+ SQL (0.2ms) DELETE FROM "users"
2724
+  (0.1ms) SAVEPOINT active_record_1
2725
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 10:54:13.474584"], ["updated_at", "2018-09-17 10:54:13.474584"]]
2726
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2727
+  (0.1ms) select count(*) as users_count from users
2728
+  (0.1ms) EXPLAIN select count(*) as users_count from users
2729
+  (0.4ms) rollback transaction
2730
+  (0.0ms) begin transaction
2731
+ -------------------------
2732
+ DatabaseTest: test_tables
2733
+ -------------------------
2734
+  (0.0ms) rollback transaction
2735
+  (0.0ms) begin transaction
2736
+ ------------------------
2737
+ TableTest: test_truncate
2738
+ ------------------------
2739
+ SQL (0.2ms) DELETE FROM "users"
2740
+  (0.0ms) SAVEPOINT active_record_1
2741
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 10:54:13.479504"], ["updated_at", "2018-09-17 10:54:13.479504"]]
2742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2743
+  (0.0ms) SELECT COUNT(*) FROM "users"
2744
+  (0.0ms) DELETE FROM users;
2745
+  (0.1ms) SELECT COUNT(*) FROM "users"
2746
+  (0.5ms) rollback transaction
2747
+  (0.0ms) begin transaction
2748
+ -----------------------
2749
+ TableTest: test_columns
2750
+ -----------------------
2751
+  (0.0ms) rollback transaction
2752
+  (0.1ms) begin transaction
2753
+ ---------------------------
2754
+ TableTest: test_primary_key
2755
+ ---------------------------
2756
+  (0.0ms) rollback transaction
2757
+  (0.0ms) begin transaction
2758
+ ------------------------
2759
+ TableTest: test_as_table
2760
+ ------------------------
2761
+ SQL (0.2ms) DELETE FROM "users"
2762
+  (0.0ms) SAVEPOINT active_record_1
2763
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 10:54:13.484292"], ["updated_at", "2018-09-17 10:54:13.484292"]]
2764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2765
+  (0.1ms) SELECT COUNT(*) FROM "users"
2766
+  Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
2767
+  (0.5ms) rollback transaction
2768
+  (0.1ms) begin transaction
2769
+ ----------------------
2770
+ TableTest: test_to_csv
2771
+ ----------------------
2772
+  (0.0ms) SAVEPOINT active_record_1
2773
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 10:54:13.504168"], ["updated_at", "2018-09-17 10:54:13.504168"]]
2774
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2775
+  (0.1ms) SELECT * FROM users
2776
+  (0.4ms) rollback transaction
2777
+  (0.1ms) begin transaction
2778
+ ----------------------
2779
+ TableTest: test_delete
2780
+ ----------------------
2781
+ SQL (0.2ms) DELETE FROM "users"
2782
+  (0.0ms) SAVEPOINT active_record_1
2783
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "igor"], ["created_at", "2018-09-17 10:54:13.508711"], ["updated_at", "2018-09-17 10:54:13.508711"]]
2784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2785
+  (0.0ms) SAVEPOINT active_record_1
2786
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "john"], ["created_at", "2018-09-17 10:54:13.509656"], ["updated_at", "2018-09-17 10:54:13.509656"]]
2787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2788
+  (0.0ms) SELECT COUNT(*) FROM "users"
2789
+  (0.0ms) DELETE FROM users WHERE id = 1;
2790
+  (0.0ms) SELECT COUNT(*) FROM "users"
2791
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "igor"]]
2792
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."name" = ? [["name", "john"]]
2793
+  (0.4ms) rollback transaction
2794
+  (0.0ms) begin transaction
2795
+ ----------------------------------------------------------------------------------------------------------------------------
2796
+ TablesHelperTest: test_method_display_style_column_returns_'display'_if_cookie_does_not_contain_record_for_this_table:column
2797
+ ----------------------------------------------------------------------------------------------------------------------------
2798
+  (0.0ms) rollback transaction
2799
+  (0.0ms) begin transaction
2800
+ ----------------------------------------------------------------------------------------------------------------------------------
2801
+ TablesHelperTest: test_method_column_is_checked?_returns_false_for_checkbox_status_if_cookie_contains_record_for_this_table:column
2802
+ ----------------------------------------------------------------------------------------------------------------------------------
2803
+  (0.0ms) rollback transaction
2804
+  (0.0ms) begin transaction
2805
+ -------------------------------------------------------------------------------------------------------------------------
2806
+ TablesHelperTest: test_method_display_style_column_returns_'display:none'_if_cookie_contains_record_for_this_table:column
2807
+ -------------------------------------------------------------------------------------------------------------------------
2808
+  (0.0ms) rollback transaction
2809
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
2814
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
2819
+  (0.0ms) begin transaction
2820
+ -----------------------
2821
+ RailsDbTest: test_truth
2822
+ -----------------------
2823
+  (0.0ms) rollback transaction
2824
+  (0.0ms) begin transaction
2825
+ ------------------------------------
2826
+ RailsDbTest: test_verify_access_proc
2827
+ ------------------------------------
2828
+  (0.0ms) rollback transaction
2829
+  (0.1ms) begin transaction
2830
+ ----------------------------------------------
2831
+ DashboardControllerTest: test_should_get_index
2832
+ ----------------------------------------------
2833
+ SQL (0.3ms) DELETE FROM "users"
2834
+ SQL (0.5ms) DELETE FROM "accounts"
2835
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."type" IN ('Customer')
2836
+  (0.0ms) SAVEPOINT active_record_1
2837
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 10:54:13.665124"], ["updated_at", "2018-09-17 10:54:13.665124"]]
2838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2839
+  (0.0ms) SAVEPOINT active_record_1
2840
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Edit"], ["created_at", "2018-09-17 10:54:13.666154"], ["updated_at", "2018-09-17 10:54:13.666154"]]
2841
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2842
+  (0.1ms) SAVEPOINT active_record_1
2843
+ SQL (0.1ms) INSERT INTO "users" ("name", "bio", "created_at", "updated_at", "type") VALUES (?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  (0.1ms)  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
+ 
2867
+  (0.1ms)  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
+ 
2875
+  (0.1ms)  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
+ 
2883
+  (0.1ms)  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
+ 
2891
+  (0.1ms)  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
+ 
2899
+  (0.1ms)  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
+ 
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
2927
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT id, name, users_count FROM accounts ORDER BY users_count desc LIMIT 10 OFFSET 0
2970
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (1.1ms)
2971
+  (0.1ms) select id, name, age from users order by age desc limit 10
2972
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (0.8ms)
2973
+  (0.1ms) SELECT COUNT(*) FROM "users"
2974
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."type" IN ('Customer')
2975
+  (0.1ms) SELECT COUNT(*) FROM "accounts"
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
+  (0.2ms) SELECT COUNT(*) FROM "users"
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
+  Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
2991
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
3005
+  (0.1ms) DELETE FROM users WHERE id = '1';
3006
+ Redirected to http://www.example.com/rails/db/tables/users/data
3007
+ Completed 302 Found in 10ms (ActiveRecord: 0.4ms)
3008
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT * FROM users
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
+  (0.2ms) SELECT * FROM users
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
+  (0.1ms) select * from users limit 10
3040
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
3056
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) select * from users limit 10
3065
+  (0.1ms) EXPLAIN select * from users limit 10
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
3076
+  Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
3085
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
3086
+  (0.1ms) SAVEPOINT active_record_1
3087
+ SQL (0.1ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "JOHN"], ["updated_at", "2018-09-17 10:54:14.613881"], ["id", 2]]
3088
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
3107
+  (0.1ms) SAVEPOINT active_record_1
3108
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "XXX"], ["created_at", "2018-09-17 10:54:14.705953"], ["updated_at", "2018-09-17 10:54:14.705953"]]
3109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? OFFSET ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
3119
+ CACHE (0.0ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
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
+  (0.1ms) SELECT COUNT(*) FROM "users"
3129
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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
+  (0.1ms) SELECT COUNT(*) FROM "users"
3138
+  Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
3139
+  (0.1ms) SAVEPOINT active_record_1
3140
+ SQL (0.1ms) UPDATE "users" SET "name" = ?, "updated_at" = ? WHERE "users"."id" = ? [["name", "STI"], ["updated_at", "2018-09-17 10:54:14.843175"], ["id", 3]]
3141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Customer Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."type" IN ('Customer') AND "users"."id" = ? LIMIT ? [["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
+  (2.3ms) rollback transaction
3168
+  (0.1ms) begin transaction
3169
+ --------------------------
3170
+ SqlImportTest: test_import
3171
+ --------------------------
3172
+  (0.1ms) update users set age = 11 where id = 1
3173
+  (0.0ms) update users set age = 22 where id = 2
3174
+  (0.0ms) update users set age = 33 where id = 3
3175
+  (0.3ms) 
3176
+ CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC));
3177
+  (0.4ms) rollback transaction
3178
+  (0.0ms) begin transaction
3179
+ ----------------------------------------------------------------------------
3180
+ RailsDbDataTableHelperTest: test_rails_db_data_table_works_with_many_options
3181
+ ----------------------------------------------------------------------------
3182
+  (0.1ms) SAVEPOINT active_record_1
3183
+ SQL (0.5ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Igor"], ["age", 9999], ["created_at", "2018-09-17 10:54:14.876346"], ["updated_at", "2018-09-17 10:54:14.876346"]]
3184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3185
+  (0.2ms) SELECT id, name FROM users ORDER BY id asc LIMIT 10 OFFSET 0
3186
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (2.2ms)
3187
+  (0.7ms) rollback transaction
3188
+  (0.1ms) begin transaction
3189
+ ----------------------------------------------------------------------
3190
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_sql_works
3191
+ ----------------------------------------------------------------------
3192
+  (0.0ms) SAVEPOINT active_record_1
3193
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 10:54:14.908439"], ["updated_at", "2018-09-17 10:54:14.908439"]]
3194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3195
+  (0.1ms) select * from users
3196
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (0.8ms)
3197
+  (1.0ms) rollback transaction
3198
+  (0.1ms) begin transaction
3199
+ --------------------------------------------------------------------------------
3200
+ RailsDbDataTableHelperTest: test_rails_db_data_table_sql_works_with_many_options
3201
+ --------------------------------------------------------------------------------
3202
+  (0.0ms) SAVEPOINT active_record_1
3203
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 10:54:14.936619"], ["updated_at", "2018-09-17 10:54:14.936619"]]
3204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3205
+  (0.1ms) select * from users
3206
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_sql_result.html.erb (0.4ms)
3207
+  (0.6ms) rollback transaction
3208
+  (0.1ms) begin transaction
3209
+ ------------------------------------------------------------------
3210
+ RailsDbDataTableHelperTest: test_default_rails_db_data_table_works
3211
+ ------------------------------------------------------------------
3212
+  (0.0ms) SAVEPOINT active_record_1
3213
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Igor"], ["created_at", "2018-09-17 10:54:14.941901"], ["updated_at", "2018-09-17 10:54:14.941901"]]
3214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3215
+  (0.1ms) SELECT * FROM users
3216
+ Rendered /Users/irfanahmed/open_source_projects/xplore/app/views/rails_db/shared/_data_table.html.erb (1.1ms)
3217
+  (0.6ms) rollback transaction