You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<none> [2] > create database test
created database test
<none> [3] > use database test
switched to database test
test [4] > create table test (id int32, val int32, primary key (id))
table test defined
test [5] >insert into test values (1, 1), (2, 3), (5, 8)
inserted 1 row
test [6] >select*from test
inserted 11
test [7] >
I'd expect one of two behaviors here:
Behave like the PostgreSQL's multirow VALUES and insert all three items.
Return an error indicating that the input was not understood.
The text was updated successfully, but these errors were encountered:
I'd expect one of two behaviors here:
The text was updated successfully, but these errors were encountered: