From 379c440606dfd21709439557a20debc0c9bd1d94 Mon Sep 17 00:00:00 2001 From: Hannah Ramadan <76922290+hannahramadan@users.noreply.github.com> Date: Mon, 5 Aug 2024 13:04:50 -0700 Subject: [PATCH] Update instrumentation/pg/example/pg.rb Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> --- instrumentation/pg/example/pg.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instrumentation/pg/example/pg.rb b/instrumentation/pg/example/pg.rb index b598f5511..4318d5fc3 100644 --- a/instrumentation/pg/example/pg.rb +++ b/instrumentation/pg/example/pg.rb @@ -23,7 +23,7 @@ # Insert data into the table conn.exec("INSERT INTO test_table (name, age) VALUES ('Peter', 60), ('Paul', 25), ('Mary', 45)") -# Spans will be printed to your terminal when these statement execute: +# Spans will be printed to your terminal when these statements execute: conn.exec('SELECT 1 AS a, 2 AS b, NULL AS c').each_row { |r| puts r.inspect } conn.exec('SELECT * FROM test_table').each_row { |r| puts r.inspect }