Skip to content

Commit df7c166

Browse files
inoasinoas
authored andcommitted
fix
1 parent fb7c575 commit df7c166

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ fn create_table_if_not_exists_birds(db_connection) {
5353
is_extinct BOOLEAN
5454
);"
5555
|> postgres.execute_raw_sql(db_connection)
56-
|> io.debug
56+
|> echo
5757
}
5858
5959
fn insert_into_table_birds(db_connection) {
@@ -69,7 +69,7 @@ fn insert_into_table_birds(db_connection) {
6969
)
7070
|> i.to_query
7171
|> postgres.run_write_query(decode.dynamic, db_connection)
72-
|> io.debug
72+
|> echo
7373
}
7474
7575
fn select_from_table_birds(db_connection) {
@@ -78,7 +78,7 @@ fn select_from_table_birds(db_connection) {
7878
|> s.selects([s.col("species")])
7979
|> s.to_query
8080
|> postgres.run_read_query(decode.dynamic, db_connection)
81-
|> io.debug
81+
|> echo
8282
}
8383
8484
fn delete_from_table_birds(db_connection) {
@@ -87,7 +87,7 @@ fn delete_from_table_birds(db_connection) {
8787
|> d.where(w.col("species") |> w.eq(w.string("Dodo")))
8888
|> d.to_query
8989
|> postgres.run_write_query(decode.dynamic, db_connection)
90-
|> io.debug
90+
|> echo
9191
}
9292
```
9393

0 commit comments

Comments
 (0)