]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
qa: set column for insertion 67251/head
authorPatrick Donnelly <pdonnell@ibm.com>
Sun, 8 Feb 2026 15:48:54 +0000 (10:48 -0500)
committerPatrick Donnelly <pdonnell@ibm.com>
Sun, 8 Feb 2026 19:31:01 +0000 (14:31 -0500)
    2026-02-08T13:02:24.439 INFO:tasks.workunit.client.0.trial031.stderr:Parse error near line 2: no such column: "start" - should this be a string literal in single-quotes?

Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
qa/workunits/rados/test_libcephsqlite.sh

index bfdcc7bd681772f5c54f0d82dc17c97e913f9938..21e829cd22f0a2d9071d27e3d12895849a5a1075 100755 (executable)
@@ -71,7 +71,7 @@ striper rm baz.db
 date
 sqlite b <<EOF
 CREATE TABLE foo (a BLOB);
-INSERT INTO foo VALUES (RANDOMBLOB(1<<20));
+INSERT INTO foo (a) VALUES (RANDOMBLOB(1<<20));
 WITH RECURSIVE c(x) AS
   (
    VALUES(1)
@@ -104,7 +104,7 @@ striper rm baz.db
 date
 sqlite b <<EOF
 CREATE TABLE foo (a BLOB);
-INSERT INTO foo VALUES (RANDOMBLOB(1<<20));
+INSERT INTO foo (a) VALUES (RANDOMBLOB(1<<20));
 WITH RECURSIVE c(x) AS
   (
    VALUES(1)