1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Make the last_insert_rowid method in the TCL interface work with

64-bit rowids. (CVS 3283)

FossilOrigin-Name: d50c37975de7639627422cbed40eb03a431874d5
This commit is contained in:
drh
2006-06-21 19:30:34 +00:00
parent 70ba164098
commit f7e678d6e9
4 changed files with 17 additions and 12 deletions

View File

@ -355,6 +355,11 @@ do_test lastinsert-8.1 {
}
} 5000000000
do_test lastinsert-9.1 {
db eval {INSERT INTO t2 VALUES(123456789012345,0)}
db last_insert_rowid
} {123456789012345}
} ;# ifcapable (view && trigger)