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
> πππ»ππΌππ½ππΎππΏ <
create table blog_1 (id int primary key, title varchar unique, created_at datetime);
+----------------------+
| CREATE TABLE SUCCESS |
+======================+
| blog_1 |
+----------------------+
> πππ»ππΌππ½ππΎππΏ <
insert into blog_1 (id, title) values (0, 'KipSQL', '2022-10-12 12:22:33');
thread 'main' panicked at /home/jojo/code/open-source/kipsql/src/binder/insert.rs:52:52:
index out of bounds: the len is 2 but the index is 2
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
What did you expect to see?
Insert bind fails with error
What did you see instead?
PANIC occurs when the number of columns does not match the expression during bind Insert.
> πππ»ππΌππ½ππΎππΏ <
insert into blog_1 (id, title) values (0, 'KipSQL', '2022-10-12 12:22:33');
thread 'main' panicked at /home/jojo/code/open-source/kipsql/src/binder/insert.rs:52:52:
index out of bounds: the len is 2 but the index is 2
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
The text was updated successfully, but these errors were encountered:
Bug Report
What version of KipSQL are you using?
0.0.1-alpha.6
What version of Rust are you using?
What's the status of the running?
What did you do?
What did you expect to see?
Insert bind fails with error
What did you see instead?
PANIC occurs when the number of columns does not match the expression during bind Insert.
The text was updated successfully, but these errors were encountered: