newrelic_rpm 3.7.2.195 → 3.7.3.199

Sign up to get free protection for your applications and to get access to all the features.
Files changed (374) hide show
  1. data.tar.gz.sig +0 -0
  2. data/CHANGELOG +25 -1
  3. data/Rakefile +7 -0
  4. data/lib/new_relic/agent/agent.rb +19 -13
  5. data/lib/new_relic/agent/configuration/default_source.rb +23 -0
  6. data/lib/new_relic/agent/cross_app_tracing.rb +2 -0
  7. data/lib/new_relic/agent/database.rb +123 -94
  8. data/lib/new_relic/agent/database/obfuscation_helpers.rb +37 -0
  9. data/lib/new_relic/agent/database/obfuscator.rb +65 -0
  10. data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +49 -0
  11. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +2 -1
  12. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +1 -1
  13. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +9 -8
  14. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +1 -38
  15. data/lib/new_relic/agent/instrumentation/rubyprof.rb +26 -0
  16. data/lib/new_relic/agent/instrumentation/typhoeus.rb +3 -2
  17. data/lib/new_relic/agent/pipe_channel_manager.rb +45 -12
  18. data/lib/new_relic/agent/pipe_service.rb +14 -8
  19. data/lib/new_relic/agent/request_sampler.rb +63 -6
  20. data/lib/new_relic/agent/sampler_collection.rb +5 -2
  21. data/lib/new_relic/agent/shim_agent.rb +1 -1
  22. data/lib/new_relic/agent/transaction.rb +41 -22
  23. data/lib/new_relic/agent/transaction_sample_builder.rb +0 -4
  24. data/lib/new_relic/agent/transaction_sampler.rb +2 -5
  25. data/lib/new_relic/agent/transaction_state.rb +43 -11
  26. data/lib/new_relic/agent/vm.rb +32 -0
  27. data/lib/new_relic/agent/vm/jruby_vm.rb +40 -0
  28. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +36 -0
  29. data/lib/new_relic/agent/vm/mri_vm.rb +86 -0
  30. data/lib/new_relic/agent/vm/rubinius_vm.rb +40 -0
  31. data/lib/new_relic/agent/vm/snapshot.rb +16 -0
  32. data/lib/new_relic/control.rb +0 -6
  33. data/lib/new_relic/language_support.rb +20 -0
  34. data/lib/new_relic/latest_changes.rb +41 -12
  35. data/lib/new_relic/rack/developer_mode.rb +8 -1
  36. data/lib/new_relic/rack/transaction_reset.rb +1 -1
  37. data/lib/new_relic/transaction_sample.rb +0 -13
  38. data/lib/new_relic/version.rb +1 -1
  39. data/lib/tasks/install.rake +5 -0
  40. data/newrelic_rpm.gemspec +2 -1
  41. data/test/active_record_fixtures.rb +7 -9
  42. data/test/agent_helper.rb +11 -50
  43. data/test/environments/lib/environments/runner.rb +3 -5
  44. data/test/environments/rails40/Gemfile +12 -3
  45. data/test/environments/rails41/Gemfile +34 -0
  46. data/test/environments/rails41/Rakefile +11 -0
  47. data/test/environments/rails41/config/application.rb +18 -0
  48. data/test/environments/rails41/config/boot.rb +10 -0
  49. data/test/environments/rails41/config/database.yml +26 -0
  50. data/test/environments/rails41/config/environment.rb +6 -0
  51. data/test/environments/rails41/db/schema.rb +5 -0
  52. data/test/fixtures/cross_agent_tests/README.md +12 -0
  53. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.colon_obfuscated.txt +3 -0
  54. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.explain.txt +3 -0
  55. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.obfuscated.txt +3 -0
  56. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.query.txt +1 -0
  57. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.colon_obfuscated.txt +2 -0
  58. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.explain.txt +2 -0
  59. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.obfuscated.txt +2 -0
  60. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.query.txt +1 -0
  61. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.colon_obfuscated.txt +2 -0
  62. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.explain.txt +2 -0
  63. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.obfuscated.txt +2 -0
  64. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.query.txt +1 -0
  65. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.colon_obfuscated.txt +2 -0
  66. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.explain.txt +3 -0
  67. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.obfuscated.txt +2 -0
  68. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt +1 -0
  69. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.colon_obfuscated.txt +2 -0
  70. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.explain.txt +2 -0
  71. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.obfuscated.txt +2 -0
  72. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.query.txt +1 -0
  73. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.colon_obfuscated.txt +2 -0
  74. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.explain.txt +2 -0
  75. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.obfuscated.txt +2 -0
  76. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.query.txt +1 -0
  77. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.colon_obfuscated.txt +5 -0
  78. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.explain.txt +5 -0
  79. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.obfuscated.txt +5 -0
  80. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.query.txt +1 -0
  81. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.colon_obfuscated.txt +2 -0
  82. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.explain.txt +2 -0
  83. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.obfuscated.txt +2 -0
  84. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.query.txt +1 -0
  85. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.colon_obfuscated.txt +5 -0
  86. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.explain.txt +5 -0
  87. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.obfuscated.txt +5 -0
  88. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.query.txt +1 -0
  89. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.colon_obfuscated.txt +2 -0
  90. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.explain.txt +2 -0
  91. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.obfuscated.txt +2 -0
  92. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.query.txt +1 -0
  93. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.colon_obfuscated.txt +2 -0
  94. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.explain.txt +2 -0
  95. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.obfuscated.txt +2 -0
  96. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.query.txt +1 -0
  97. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.colon_obfuscated.txt +3 -0
  98. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.explain.txt +3 -0
  99. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.obfuscated.txt +3 -0
  100. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.query.txt +1 -0
  101. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.colon_obfuscated.txt +2 -0
  102. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.explain.txt +2 -0
  103. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.obfuscated.txt +2 -0
  104. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.query.txt +1 -0
  105. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.colon_obfuscated.txt +2 -0
  106. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.explain.txt +3 -0
  107. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.obfuscated.txt +2 -0
  108. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.query.txt +1 -0
  109. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.colon_obfuscated.txt +2 -0
  110. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.explain.txt +2 -0
  111. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.obfuscated.txt +2 -0
  112. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.query.txt +1 -0
  113. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.colon_obfuscated.txt +2 -0
  114. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.explain.txt +2 -0
  115. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.obfuscated.txt +2 -0
  116. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.query.txt +1 -0
  117. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.colon_obfuscated.txt +2 -0
  118. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.explain.txt +2 -0
  119. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.obfuscated.txt +2 -0
  120. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.query.txt +1 -0
  121. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.colon_obfuscated.txt +2 -0
  122. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.explain.txt +2 -0
  123. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.obfuscated.txt +2 -0
  124. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.query.txt +1 -0
  125. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.colon_obfuscated.txt +2 -0
  126. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.explain.txt +2 -0
  127. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.obfuscated.txt +2 -0
  128. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.query.txt +1 -0
  129. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.colon_obfuscated.txt +2 -0
  130. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.explain.txt +2 -0
  131. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.obfuscated.txt +2 -0
  132. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.query.txt +1 -0
  133. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.colon_obfuscated.txt +2 -0
  134. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.explain.txt +2 -0
  135. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.obfuscated.txt +2 -0
  136. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.query.txt +1 -0
  137. data/test/fixtures/cross_agent_tests/rules.json +165 -0
  138. data/test/fixtures/cross_agent_tests/rum_client_config.json +142 -0
  139. data/test/fixtures/cross_agent_tests/rum_cookie.json +17 -0
  140. data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/close-body-in-comment.html +10 -0
  141. data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html +19 -0
  142. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/basic.html +10 -0
  143. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/body_with_attributes.html +3 -0
  144. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag.html +11 -0
  145. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_after_x_ua_tag.html +11 -0
  146. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_before_x_ua_tag.html +11 -0
  147. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_with_spaces.html +11 -0
  148. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments1.html +24 -0
  149. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments2.html +24 -0
  150. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag.html +11 -0
  151. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_after_x_ua_tag.html +11 -0
  152. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_before_x_ua_tag.html +11 -0
  153. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes1.html +27 -0
  154. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes2.html +24 -0
  155. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes_mismatch.html +24 -0
  156. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes1.html +25 -0
  157. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes_mismatch.html +25 -0
  158. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/head_with_attributes.html +10 -0
  159. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/incomplete_non_meta_tags.html +10 -0
  160. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_header.html +7 -0
  161. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_html_and_no_header.html +3 -0
  162. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_start_header.html +9 -0
  163. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script1.html +19 -0
  164. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script2.html +17 -0
  165. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag.html +10 -0
  166. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiline.html +11 -0
  167. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_spaces_around_equals.html +10 -0
  168. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_others.html +11 -0
  169. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_spaces.html +10 -0
  170. data/test/fixtures/cross_agent_tests/sql_parsing.json +55 -0
  171. data/test/fixtures/cross_agent_tests/url_clean.json +15 -0
  172. data/test/fixtures/cross_agent_tests/url_domain_extraction.json +35 -0
  173. data/test/flaky_proxy/README.md +91 -33
  174. data/test/flaky_proxy/lib/flaky_proxy.rb +1 -0
  175. data/test/flaky_proxy/lib/flaky_proxy/http_message.rb +2 -0
  176. data/test/flaky_proxy/lib/flaky_proxy/proxy.rb +19 -4
  177. data/test/flaky_proxy/lib/flaky_proxy/rule.rb +13 -16
  178. data/test/flaky_proxy/lib/flaky_proxy/rule_set.rb +10 -2
  179. data/test/flaky_proxy/lib/flaky_proxy/sequence.rb +14 -0
  180. data/test/helpers/file_searching.rb +1 -1
  181. data/test/intentional_fail.rb +1 -1
  182. data/test/multiverse/lib/multiverse/suite.rb +26 -3
  183. data/test/multiverse/suites/active_record/Envfile +1 -1
  184. data/test/multiverse/suites/active_record/ar_method_aliasing.rb +1 -1
  185. data/test/multiverse/suites/agent_only/audit_log_test.rb +1 -1
  186. data/test/multiverse/suites/agent_only/collector_exception_handling_test.rb +1 -1
  187. data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +1 -1
  188. data/test/multiverse/suites/agent_only/encoding_handling_test.rb +1 -1
  189. data/test/multiverse/suites/agent_only/harvest_timestamps_test.rb +1 -1
  190. data/test/multiverse/suites/agent_only/http_response_code_test.rb +1 -1
  191. data/test/multiverse/suites/agent_only/key_transactions_test.rb +1 -1
  192. data/test/multiverse/suites/agent_only/logging_test.rb +1 -1
  193. data/test/multiverse/suites/agent_only/marshaling_test.rb +1 -1
  194. data/test/multiverse/suites/agent_only/pipe_manager_test.rb +1 -1
  195. data/test/multiverse/suites/agent_only/rename_rule_test.rb +1 -1
  196. data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +1 -1
  197. data/test/multiverse/suites/agent_only/service_timeout_test.rb +1 -1
  198. data/test/multiverse/suites/agent_only/set_transaction_name_test.rb +1 -1
  199. data/test/multiverse/suites/agent_only/ssl_test.rb +1 -1
  200. data/test/multiverse/suites/agent_only/start_up_test.rb +1 -1
  201. data/test/multiverse/suites/agent_only/thread_profiling_test.rb +1 -1
  202. data/test/multiverse/suites/agent_only/xray_sessions_test.rb +1 -1
  203. data/test/multiverse/suites/bare/standalone_instrumentation_test.rb +1 -1
  204. data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +1 -1
  205. data/test/multiverse/suites/curb/curb_test.rb +1 -1
  206. data/test/multiverse/suites/datamapper/datamapper_test.rb +1 -1
  207. data/test/multiverse/suites/deferred_instrumentation/sinatra_test.rb +1 -1
  208. data/test/multiverse/suites/excon/excon_test.rb +1 -1
  209. data/test/multiverse/suites/httpclient/httpclient_test.rb +1 -1
  210. data/test/multiverse/suites/mongo/helpers/mongo_operation_tests.rb +7 -3
  211. data/test/multiverse/suites/mongo/mongo_instrumentation_test.rb +1 -1
  212. data/test/multiverse/suites/mongo/mongo_unsupported_version_test.rb +2 -2
  213. data/test/multiverse/suites/net_http/net_http_test.rb +1 -1
  214. data/test/multiverse/suites/padrino/Envfile +1 -1
  215. data/test/multiverse/suites/padrino/padrino_test.rb +1 -1
  216. data/test/multiverse/suites/rails/Envfile +10 -0
  217. data/test/multiverse/suites/rails/request_statistics_test.rb +59 -6
  218. data/test/multiverse/suites/rails/view_instrumentation_test.rb +1 -0
  219. data/test/multiverse/suites/resque/instrumentation_test.rb +1 -1
  220. data/test/multiverse/suites/sequel/sequel_instrumentation_test.rb +5 -18
  221. data/test/multiverse/suites/sequel/sequel_safety_test.rb +1 -1
  222. data/test/multiverse/suites/sidekiq/sidekiq_instrumentation_test.rb +1 -1
  223. data/test/multiverse/suites/sinatra/ignoring_test.rb +1 -1
  224. data/test/multiverse/suites/sinatra/sinatra_classic_test.rb +1 -1
  225. data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +1 -1
  226. data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +1 -1
  227. data/test/multiverse/suites/sinatra/sinatra_modular_test.rb +1 -1
  228. data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +1 -1
  229. data/test/multiverse/suites/typhoeus/typhoeus_test.rb +36 -2
  230. data/test/new_relic/FAKECHANGELOG +21 -0
  231. data/test/new_relic/agent/agent/connect_test.rb +1 -1
  232. data/test/new_relic/agent/agent/start_test.rb +1 -1
  233. data/test/new_relic/agent/agent/start_worker_thread_test.rb +1 -1
  234. data/test/new_relic/agent/agent_logger_test.rb +1 -1
  235. data/test/new_relic/agent/agent_test.rb +14 -8
  236. data/test/new_relic/agent/apdex_from_server_test.rb +1 -1
  237. data/test/new_relic/agent/audit_logger_test.rb +1 -1
  238. data/test/new_relic/agent/autostart_test.rb +1 -1
  239. data/test/new_relic/agent/browser_token_test.rb +1 -1
  240. data/test/new_relic/agent/busy_calculator_test.rb +1 -1
  241. data/test/new_relic/agent/commands/agent_command_router_test.rb +1 -1
  242. data/test/new_relic/agent/commands/agent_command_test.rb +1 -1
  243. data/test/new_relic/agent/commands/thread_profiler_session_test.rb +2 -2
  244. data/test/new_relic/agent/commands/xray_session_collection_test.rb +1 -1
  245. data/test/new_relic/agent/commands/xray_session_test.rb +1 -1
  246. data/test/new_relic/agent/configuration/default_source_test.rb +1 -1
  247. data/test/new_relic/agent/configuration/environment_source_test.rb +1 -1
  248. data/test/new_relic/agent/configuration/manager_test.rb +1 -1
  249. data/test/new_relic/agent/configuration/orphan_configuration_test.rb +1 -1
  250. data/test/new_relic/agent/configuration/server_source_test.rb +1 -1
  251. data/test/new_relic/agent/configuration/yaml_source_test.rb +1 -1
  252. data/test/new_relic/agent/cpu_sampler_test.rb +1 -1
  253. data/test/new_relic/agent/cross_app_monitor_test.rb +3 -3
  254. data/test/new_relic/agent/cross_app_tracing_test.rb +1 -1
  255. data/test/new_relic/agent/database/postgres_explain_obfuscator_test.rb +34 -0
  256. data/test/new_relic/agent/database_test.rb +192 -5
  257. data/test/new_relic/agent/datastores/mongo/metric_generator_test.rb +1 -1
  258. data/test/new_relic/agent/datastores/mongo/metric_translator_test.rb +11 -1
  259. data/test/new_relic/agent/datastores/mongo/obfuscator_test.rb +1 -1
  260. data/test/new_relic/agent/datastores/mongo/statement_formatter_test.rb +1 -1
  261. data/test/new_relic/agent/error_collector/notice_error_test.rb +1 -1
  262. data/test/new_relic/agent/error_collector_test.rb +1 -1
  263. data/test/new_relic/agent/event_listener_test.rb +1 -1
  264. data/test/new_relic/agent/harvester_test.rb +1 -1
  265. data/test/new_relic/agent/http_clients/uri_util_test.rb +1 -1
  266. data/test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb +1 -1
  267. data/test/new_relic/agent/instrumentation/action_view_subscriber_test.rb +1 -1
  268. data/test/new_relic/agent/instrumentation/active_record_helper_test.rb +4 -4
  269. data/test/new_relic/agent/instrumentation/active_record_subscriber_test.rb +2 -2
  270. data/test/new_relic/agent/instrumentation/active_record_test.rb +385 -0
  271. data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +1 -1
  272. data/test/new_relic/agent/instrumentation/instrumentation_test.rb +1 -1
  273. data/test/new_relic/agent/instrumentation/metric_frame_test.rb +1 -1
  274. data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +1 -1
  275. data/test/new_relic/agent/instrumentation/queue_time_test.rb +1 -1
  276. data/test/new_relic/agent/instrumentation/rack_test.rb +1 -1
  277. data/test/new_relic/agent/instrumentation/sinatra/transaction_namer_test.rb +1 -1
  278. data/test/new_relic/agent/instrumentation/sinatra_test.rb +1 -1
  279. data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +1 -1
  280. data/test/new_relic/agent/javascript_instrumentor_test.rb +3 -3
  281. data/test/new_relic/agent/memcache_instrumentation_test.rb +1 -1
  282. data/test/new_relic/agent/memory_logger_test.rb +1 -1
  283. data/test/new_relic/agent/method_interrobang_test.rb +1 -1
  284. data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +1 -1
  285. data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +1 -1
  286. data/test/new_relic/agent/method_tracer_test.rb +1 -1
  287. data/test/new_relic/agent/method_visibility_test.rb +1 -1
  288. data/test/new_relic/agent/new_relic_service_test.rb +2 -2
  289. data/test/new_relic/agent/obfuscator_test.rb +1 -1
  290. data/test/new_relic/agent/pipe_channel_manager_test.rb +216 -143
  291. data/test/new_relic/agent/pipe_service_test.rb +26 -15
  292. data/test/new_relic/agent/request_sampler_test.rb +65 -18
  293. data/test/new_relic/agent/rpm_agent_test.rb +1 -1
  294. data/test/new_relic/agent/rules_engine_test.rb +1 -1
  295. data/test/new_relic/agent/sampled_buffer_test.rb +1 -1
  296. data/test/new_relic/agent/sampler_collection_test.rb +8 -1
  297. data/test/new_relic/agent/sampler_test.rb +1 -1
  298. data/test/new_relic/agent/shim_agent_test.rb +3 -3
  299. data/test/new_relic/agent/sql_sampler_test.rb +7 -6
  300. data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +1 -1
  301. data/test/new_relic/agent/stats_engine/metric_stats_test.rb +1 -1
  302. data/test/new_relic/agent/stats_engine/samplers_test.rb +1 -1
  303. data/test/new_relic/agent/stats_engine_test.rb +1 -1
  304. data/test/new_relic/agent/stats_hash_test.rb +1 -1
  305. data/test/new_relic/agent/stats_test.rb +1 -1
  306. data/test/new_relic/agent/threading/agent_thread_test.rb +1 -1
  307. data/test/new_relic/agent/threading/backtrace_node_test.rb +1 -1
  308. data/test/new_relic/agent/threading/backtrace_service_test.rb +3 -3
  309. data/test/new_relic/agent/threading/thread_profile_test.rb +1 -1
  310. data/test/new_relic/agent/transaction/developer_mode_sample_buffer_test.rb +1 -1
  311. data/test/new_relic/agent/transaction/force_persist_sample_buffer_test.rb +1 -1
  312. data/test/new_relic/agent/transaction/pop_test.rb +1 -1
  313. data/test/new_relic/agent/transaction/slowest_sample_buffer_test.rb +1 -1
  314. data/test/new_relic/agent/transaction/xray_sample_buffer_test.rb +1 -1
  315. data/test/new_relic/agent/transaction_interrobang_test.rb +1 -1
  316. data/test/new_relic/agent/transaction_sample_builder_test.rb +1 -1
  317. data/test/new_relic/agent/transaction_sampler_test.rb +17 -17
  318. data/test/new_relic/agent/transaction_state_test.rb +61 -6
  319. data/test/new_relic/agent/transaction_test.rb +60 -3
  320. data/test/new_relic/agent/transaction_timings_test.rb +1 -1
  321. data/test/new_relic/agent/vm/monotonic_gc_profiler_test.rb +42 -0
  322. data/test/new_relic/agent/vm/mri_vm_test.rb +35 -0
  323. data/test/new_relic/agent/vm/snapshot_test.rb +8 -0
  324. data/test/new_relic/agent/vm_test.rb +48 -0
  325. data/test/new_relic/agent/worker_loop_test.rb +1 -1
  326. data/test/new_relic/agent_test.rb +1 -1
  327. data/test/new_relic/cli/deployments_test.rb +1 -1
  328. data/test/new_relic/coerce_test.rb +1 -1
  329. data/test/new_relic/collection_helper_test.rb +1 -1
  330. data/test/new_relic/control/class_methods_test.rb +1 -1
  331. data/test/new_relic/control/frameworks/rails_test.rb +1 -1
  332. data/test/new_relic/control_test.rb +1 -1
  333. data/test/new_relic/dependency_detection_test.rb +1 -1
  334. data/test/new_relic/dispatcher_test.rb +1 -1
  335. data/test/new_relic/environment_report_test.rb +1 -1
  336. data/test/new_relic/framework_test.rb +1 -1
  337. data/test/new_relic/http_client_test_cases.rb +1 -1
  338. data/test/new_relic/json_wrapper_test.rb +1 -1
  339. data/test/new_relic/language_support_test.rb +42 -1
  340. data/test/new_relic/latest_changes_test.rb +45 -0
  341. data/test/new_relic/license_test.rb +2 -2
  342. data/test/new_relic/load_test.rb +1 -1
  343. data/test/new_relic/local_environment_test.rb +1 -1
  344. data/test/new_relic/metric_data_test.rb +1 -1
  345. data/test/new_relic/metric_parser/metric_parser_test.rb +1 -1
  346. data/test/new_relic/metric_spec_test.rb +1 -1
  347. data/test/new_relic/multiverse_helpers.rb +0 -27
  348. data/test/new_relic/noticed_error_test.rb +1 -1
  349. data/test/new_relic/rack/agent_hooks_test.rb +1 -1
  350. data/test/new_relic/rack/all_test.rb +1 -1
  351. data/test/new_relic/rack/browser_monitoring_test.rb +2 -2
  352. data/test/new_relic/rack/deferred_instrumentation_test.rb +1 -1
  353. data/test/new_relic/rack/developer_mode_helper_test.rb +1 -1
  354. data/test/new_relic/rack/developer_mode_test.rb +2 -19
  355. data/test/new_relic/rack/error_collector_test.rb +1 -1
  356. data/test/new_relic/rack/transaction_reset_test.rb +1 -1
  357. data/test/new_relic/transaction_analysis/segment_summary_test.rb +1 -1
  358. data/test/new_relic/transaction_analysis_test.rb +1 -1
  359. data/test/new_relic/transaction_sample/composite_segment_test.rb +1 -1
  360. data/test/new_relic/transaction_sample/fake_segment_test.rb +1 -1
  361. data/test/new_relic/transaction_sample/segment_test.rb +2 -2
  362. data/test/new_relic/transaction_sample/summary_segment_test.rb +1 -1
  363. data/test/new_relic/transaction_sample_subtest_test.rb +1 -1
  364. data/test/new_relic/transaction_sample_test.rb +3 -3
  365. data/test/new_relic/version_number_test.rb +1 -1
  366. data/test/performance/lib/performance/instrumentation/stackprof.rb +33 -0
  367. data/test/performance/lib/performance/platform.rb +1 -0
  368. data/test/performance/suites/marshalling.rb +2 -1
  369. data/test/test_helper.rb +33 -3
  370. data/ui/views/newrelic/index.rhtml +2 -2
  371. metadata +169 -31
  372. metadata.gz.sig +0 -0
  373. data/lib/new_relic/control/profiling.rb +0 -29
  374. data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +0 -648
@@ -0,0 +1,34 @@
1
+ source 'http://rubygems.org'
2
+
3
+ gem 'rake'
4
+
5
+ gem 'rails', '~>4.1.0.rc1'
6
+
7
+ gem 'minitest', '5.2.3'
8
+ gem 'mocha', :require => false
9
+ gem 'rack'
10
+ gem 'rack-test'
11
+
12
+ platforms :jruby do
13
+ gem "activerecord-jdbcmysql-adapter", "~>1.3.0"
14
+ gem "activerecord-jdbcsqlite3-adapter", "~>1.3.0"
15
+ gem "jruby-openssl"
16
+ end
17
+
18
+ platforms :ruby do
19
+ gem "mysql"
20
+ # Lock at 1.3.8 to work around:
21
+ # https://github.com/sparklemotion/sqlite3-ruby/issues/122
22
+ gem "sqlite3", '1.3.8'
23
+ end
24
+
25
+ platforms :rbx do
26
+ gem "rubysl"
27
+ gem "json"
28
+ # If we don't skip the require here, test-unit tries to install its at_exit
29
+ # hook and run when we run our rake task to create the test DB.
30
+ gem "rubysl-test-unit", :require => false
31
+ gem "racc" # https://github.com/rubinius/rubinius/issues/2632
32
+ end
33
+
34
+ gem "newrelic_rpm", :path => "../../.."
@@ -0,0 +1,11 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+ require 'rake'
6
+
7
+ RpmTestApp::Application.load_tasks
8
+ require 'tasks/all'
9
+
10
+ Rake::Task["default"].clear
11
+ task :default => [:'test:newrelic']
@@ -0,0 +1,18 @@
1
+ # encoding: utf-8
2
+ # This file is distributed under New Relic's license terms.
3
+ # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
4
+
5
+ require File.expand_path('../boot', __FILE__)
6
+
7
+ require 'rails/all'
8
+
9
+ Bundler.require(:default, Rails.env) if defined?(Bundler)
10
+
11
+ module RpmTestApp
12
+ class Application < Rails::Application
13
+ config.encoding = "utf-8"
14
+ config.filter_parameters += [:password]
15
+ config.secret_key_base = '414fd9af0cc192729b2b6bffe9e7077c9ac8eed5cbb74c8c4cd628906b716770598a2b7e1f328052753a4df72e559969dc05b408de73ce040c93cac7c51a348e'
16
+ config.eager_load = false
17
+ end
18
+ end
@@ -0,0 +1,10 @@
1
+ # encoding: utf-8
2
+ # This file is distributed under New Relic's license terms.
3
+ # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
4
+
5
+ require 'rubygems'
6
+
7
+ # Set up gems listed in the Gemfile.
8
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
9
+
10
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
@@ -0,0 +1,26 @@
1
+ mysql: &mysql
2
+ adapter: mysql
3
+ socket: <%= (`uname -s` =~ /Linux/ ) ? "" :"/tmp/mysql.sock" %>
4
+ username: root
5
+ host: localhost
6
+ database: <%= db = "#{ENV['RUBY_VERSION']}#{ENV['BRANCH']}"; db.empty? ? "rails_blog" : db %>
7
+
8
+ sqlite3: &sqlite3
9
+ <% if defined?(JRuby) %>
10
+ adapter: jdbcsqlite3
11
+ <% else %>
12
+ adapter: sqlite3
13
+ <% end %>
14
+ database: db/all.sqlite3
15
+ pool: 5
16
+ timeout: 5000
17
+ host: localhost
18
+
19
+ development:
20
+ <<: *sqlite3
21
+
22
+ test:
23
+ <<: *mysql
24
+
25
+ production:
26
+ <<: *mysql
@@ -0,0 +1,6 @@
1
+ # encoding: utf-8
2
+ # This file is distributed under New Relic's license terms.
3
+ # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
4
+
5
+ require File.expand_path('../application', __FILE__)
6
+ RpmTestApp::Application.initialize!
@@ -0,0 +1,5 @@
1
+ # encoding: utf-8
2
+ # This file is distributed under New Relic's license terms.
3
+ # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
4
+
5
+ # File is required to exist by Rails
@@ -0,0 +1,12 @@
1
+ # Cross Agent Tests
2
+
3
+ | Test Files | Description |
4
+ | ------------- |-------------|
5
+ | [rum_loader_insertion_location](rum_loader_insertion_location) | Describe where the RUM loader (formerly known as header) should be inserted. |
6
+ | [rum_footer_insertion_location](rum_footer_insertion_location) | Describe where the RUM footer should be inserted. |
7
+ | [rules.json](rules.json) | Describe how url/metric/txn-name rules should be applied. |
8
+ | [rum_client_config.json](rum_client_config.json) | These tests dictate the format and contents of the browser monitoring client configuration. For more information see: [SPEC](https://newrelic.atlassian.net/wiki/display/eng/JavaScript+Agent+Auto-Instrumentation) |
9
+ | [rum_cookie.json](rum_cookie.json) | These tests indicate the format requirements of a valid RUM cookie. |
10
+ | [sql_parsing.json](sql_parsing.json) | These tests show how an SQL string should be parsed for the operation and table name. |
11
+ | [url_clean.json](url_clean.json) | These tests show how URLs should be cleaned before putting them into a trace segment's parameter hash (under the key 'uri'). |
12
+ | [url_domain_extraction.json](url_domain_extraction.json) | These tests show how the domain of a URL should be extracted (for the purpose of creating external metrics). |
@@ -0,0 +1,3 @@
1
+ Index Scan using blogs_pkey on blogs (cost=0.00..8.27 rows=1 width=540)
2
+ Index Cond: ?
3
+ Filter: ?
@@ -0,0 +1,3 @@
1
+ Index Scan using blogs_pkey on blogs (cost=0.00..8.27 rows=1 width=540)
2
+ Index Cond: (id = 1234)
3
+ Filter: ((title)::text = 'sensitive text'::text)
@@ -0,0 +1,3 @@
1
+ Index Scan using blogs_pkey on blogs (cost=0.00..8.27 rows=1 width=540)
2
+ Index Cond: (id = ?)
3
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ SELECT * FROM blogs WHERE blogs.id=1234 AND blogs.title='sensitive text'
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_4 (cost=0.00..56.60 rows=1 width=5)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_4 (cost=0.00..56.60 rows=1 width=5)
2
+ Filter: ((j = 'a'::"char") AND (k = ('now'::cstring)::date))
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_4 (cost=0.00..56.60 rows=1 width=5)
2
+ Filter: ((j = ?::"char") AND (k = (?::cstring)::date))
@@ -0,0 +1 @@
1
+ explain select * from explain_plan_test_4 where j = 'abcd' and k = current_date
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_4 (cost=0.00..39.12 rows=12 width=5)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_4 (cost=0.00..39.12 rows=12 width=5)
2
+ Filter: (k = '2001-09-28'::date)
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_4 (cost=0.00..39.12 rows=12 width=5)
2
+ Filter: (k = ?::date)
@@ -0,0 +1 @@
1
+ explain select * from explain_plan_test_4 where k = date '2001-09-28'"
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..1.01 rows=1 width=540)
2
+ Filter: ?
@@ -0,0 +1,3 @@
1
+ Seq Scan on blogs (cost=0.00..1.01 rows=1 width=540)
2
+ Filter: ((title)::text = '\x08\x0C
3
+ \r '::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..1.01 rows=1 width=540)
2
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ select * from blogs where title = E'\x08\x0c\n\r\t'
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_1 (cost=0.00..24.50 rows=6 width=40)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_1 (cost=0.00..24.50 rows=6 width=40)
2
+ Filter: (c = 'three''three'::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_1 (cost=0.00..24.50 rows=6 width=40)
2
+ Filter: (c = ?::text)
@@ -0,0 +1 @@
1
+ explain select * from explain_plan_test_1 where c = 'three''three'
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_1 (cost=0.00..27.40 rows=6 width=40)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_1 (cost=0.00..27.40 rows=6 width=40)
2
+ Filter: ((a)::numeric = 10000000000::numeric)
@@ -0,0 +1,2 @@
1
+ Seq Scan on explain_plan_test_1 (cost=0.00..27.40 rows=6 width=40)
2
+ Filter: ((a)::numeric = ?::numeric)
@@ -0,0 +1 @@
1
+ explain select * from explain_plan_test_1 where a = 1e10
@@ -0,0 +1,5 @@
1
+ Hash Join (cost=12.93..26.33 rows=130 width=1113)
2
+ Hash Cond: ?
3
+ -> Seq Scan on blogs (cost=0.00..11.40 rows=140 width=540)
4
+ -> Hash (cost=11.30..11.30 rows=130 width=573)
5
+ -> Seq Scan on posts (cost=0.00..11.30 rows=130 width=573)
@@ -0,0 +1,5 @@
1
+ Hash Join (cost=12.93..26.33 rows=130 width=1113)
2
+ Hash Cond: (pg_catalog.concat(blogs.title, '-suffix') = (posts.title)::text)
3
+ -> Seq Scan on blogs (cost=0.00..11.40 rows=140 width=540)
4
+ -> Hash (cost=11.30..11.30 rows=130 width=573)
5
+ -> Seq Scan on posts (cost=0.00..11.30 rows=130 width=573)
@@ -0,0 +1,5 @@
1
+ Hash Join (cost=12.93..26.33 rows=130 width=1113)
2
+ Hash Cond: (pg_catalog.concat(blogs.title, ?) = (posts.title)::text)
3
+ -> Seq Scan on blogs (cost=0.00..11.40 rows=140 width=540)
4
+ -> Hash (cost=11.30..11.30 rows=130 width=573)
5
+ -> Seq Scan on posts (cost=0.00..11.30 rows=130 width=573)
@@ -0,0 +1 @@
1
+ SELECT * FROM blogs JOIN posts ON posts.title=CONCAT(blogs.title, '-suffix')
@@ -0,0 +1,2 @@
1
+ Seq Scan on "explain_plan_test'_3" (cost=0.00..24.50 rows=6 width=40)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on "explain_plan_test'_3" (cost=0.00..24.50 rows=6 width=40)
2
+ Filter: (i = '"abcd"'::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on "explain_plan_test'_3" (cost=0.00..24.50 rows=6 width=40)
2
+ Filter: (i = ?::text)
@@ -0,0 +1 @@
1
+ explain select * from "explain_plan_test'_3" where i = '"abcd"'
@@ -0,0 +1,5 @@
1
+ Insert on explain_plan_test_1 (cost=24.50..49.00 rows=580 width=40)
2
+ -> Seq Scan on explain_plan_test_2 (cost=24.50..49.00 rows=580 width=40)
3
+ Filter: ?
4
+ SubPlan 1
5
+ -> Seq Scan on explain_plan_test_1 (cost=0.00..21.60 rows=1160 width=4)
@@ -0,0 +1,5 @@
1
+ Insert on explain_plan_test_1 (cost=24.50..49.00 rows=580 width=40)
2
+ -> Seq Scan on explain_plan_test_2 (cost=24.50..49.00 rows=580 width=40)
3
+ Filter: (NOT (hashed SubPlan 1))
4
+ SubPlan 1
5
+ -> Seq Scan on explain_plan_test_1 (cost=0.00..21.60 rows=1160 width=4)
@@ -0,0 +1,5 @@
1
+ Insert on explain_plan_test_1 (cost=24.50..49.00 rows=580 width=40)
2
+ -> Seq Scan on explain_plan_test_2 (cost=24.50..49.00 rows=580 width=40)
3
+ Filter: (NOT (hashed SubPlan 1))
4
+ SubPlan 1
5
+ -> Seq Scan on explain_plan_test_1 (cost=0.00..21.60 rows=1160 width=4)
@@ -0,0 +1 @@
1
+ explain insert into explain_plan_test_1 select * from explain_plan_test_2 where explain_plan_test_2.d not in (select a from explain_plan_test_1)
@@ -0,0 +1,2 @@
1
+ Index Scan using blogs_pkey on blogs (cost=0.00..8.27 rows=1 width=540)
2
+ Index Cond: ?
@@ -0,0 +1,2 @@
1
+ Index Scan using blogs_pkey on blogs (cost=0.00..8.27 rows=1 width=540)
2
+ Index Cond: (id = 1234)
@@ -0,0 +1,2 @@
1
+ Index Scan using blogs_pkey on blogs (cost=0.00..8.27 rows=1 width=540)
2
+ Index Cond: (id = ?)
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = '][^|)/('::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ SELECT * FROM blogs WHERE blogs.title='][^|)/('
@@ -0,0 +1,3 @@
1
+ Index Scan using blogs_pkey on blogs (cost=0.00..8.27 rows=1 width=540)
2
+ Index Cond: ?
3
+ Filter: ?
@@ -0,0 +1,3 @@
1
+ Index Scan using blogs_pkey on blogs (cost=0.00..8.27 rows=1 width=540)
2
+ Index Cond: (id = 15402)
3
+ Filter: ((title)::text = 'logs'::text)
@@ -0,0 +1,3 @@
1
+ Index Scan using blogs_pkey on blogs (cost=0.00..8.27 rows=1 width=540)
2
+ Index Cond: (id = ?)
3
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ SELECT * FROM blogs WHERE blogs.id=15402 AND blogs.title='logs'
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = 'foo''bar'::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ EXPLAIN SELECT * FROM blogs WHERE blogs.title=E'foo\'bar'
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ?
@@ -0,0 +1,3 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = '\x08\x0C
3
+ \r '::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ SELECT * FROM blogs WHERE blogs.title=E'\b\f\n\r\t'
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = '\x01\x079'::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ SELECT * FROM blogs WHERE blogs.title=E'\1\7\9'
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = 'foo''bar'::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ SELECT * FROM blogs WHERE blogs.title='foo\'bar'
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = 'U'::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ SELECT * FROM blogs WHERE blogs.title=E'\x55'
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = 'data'::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ SELECT * FROM blogs WHERE blogs.title=E'd\u0061t\U00000061'
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ?
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = 'data'::text)
@@ -0,0 +1,2 @@
1
+ Seq Scan on blogs (cost=0.00..11.75 rows=1 width=540)
2
+ Filter: ((title)::text = ?::text)
@@ -0,0 +1 @@
1
+ SELECT * FROM blogs WHERE blogs.title=U&'d\0061t\+000061'