From 62fcb9ffa9e40db6f34e7dd0d36804d73ef01435 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Sun, 22 Dec 2019 06:07:52 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- scripts/insert-rspec-profiling-data | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts/insert-rspec-profiling-data') diff --git a/scripts/insert-rspec-profiling-data b/scripts/insert-rspec-profiling-data index 88c9d8c12b1..3af5fe763a2 100755 --- a/scripts/insert-rspec-profiling-data +++ b/scripts/insert-rspec-profiling-data @@ -35,6 +35,8 @@ def insert_data(path) files.each do |filename| puts "#{Time.now} Inserting #{filename}..." + # Strip file of NULL bytes to ensure data gets inserted + system("sed", "-i", "-e", "s/\\x00//g", filename) result = RspecProfiling::Collectors::PSQL::Result.copy_from(filename) puts "#{Time.now} Inserted #{result.cmd_tuples} lines in #{filename}, DB response: #{result.cmd_status}" end -- cgit v1.2.1