Skip to content

Commit

Permalink
v: Update to V 0.4.5 ed7f1ff
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotchance committed Apr 20, 2024
1 parent 2b4bf7a commit 3e1ff5c
Show file tree
Hide file tree
Showing 7 changed files with 236 additions and 235 deletions.
2 changes: 1 addition & 1 deletion cmd/vsql/in.v
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fn in_command(cmd cli.Command) ! {
mut stmt := ''
for !f.eof() {
mut buf := []u8{len: 100}
f.read_bytes_into_newline(mut buf) or { return err }
f.read_bytes_with_newline(mut buf) or { return err }

line := buf.bytestr()
stmt += line.trim_right('\0 \n;')
Expand Down

0 comments on commit 3e1ff5c

Please sign in to comment.