Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify Single-statement Multirow Inserts #16

Open
dclements opened this issue Jan 6, 2013 · 0 comments
Open

Clarify Single-statement Multirow Inserts #16

dclements opened this issue Jan 6, 2013 · 0 comments
Labels

Comments

@dclements
Copy link
Contributor

<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    1   1

test [7] > 

I'd expect one of two behaviors here:

  1. Behave like the PostgreSQL's multirow VALUES and insert all three items.
  2. Return an error indicating that the input was not understood.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant