missing space between read args in Insert()

This commit is contained in:
Vincent Riquer 2025-11-11 17:17:56 +01:00
parent 096ab5ef9d
commit 9c2ff0fafb

View File

@ -36,7 +36,7 @@ Insert() {
"( $insert_values );" >&3 "( $insert_values );" >&3
(( no_id )) || { (( no_id )) || {
echo 'SELECT LAST_INSERT_ROWID();' >&3 echo 'SELECT LAST_INSERT_ROWID();' >&3
read -u4 -r -d$'\0' results read -u4 -r -d $'\0' results
echo "$results" echo "$results"
} }
} }