View | Details | Raw Unified | Return to bug 59072
Collapse All | Expand All

(-)test/dbd.c.orig (-5 / +5 lines)
Lines 69-79 Link Here
69
    rv = apr_dbd_query(driver, handle, &nrows, statement);
69
    rv = apr_dbd_query(driver, handle, &nrows, statement);
70
    if (rv) {
70
    if (rv) {
71
        const char* stmt[] = {
71
        const char* stmt[] = {
72
            "INSERT into apr_dbd_test (col1) values ('foo');",
72
            "INSERT into apr_dbd_test (col1) values ('foo')",
73
            "INSERT into apr_dbd_test values ('wibble', 'other', 5);",
73
            "INSERT into apr_dbd_test values ('wibble', 'other', 5)",
74
            "INSERT into apr_dbd_test values ('wibble', 'nothing', 5);",
74
            "INSERT into apr_dbd_test values ('wibble', 'nothing', 5)",
75
            "INSERT into apr_dbd_test values ('qwerty', 'foo', 0);",
75
            "INSERT into apr_dbd_test values ('qwerty', 'foo', 0)",
76
            "INSERT into apr_dbd_test values ('asdfgh', 'bar', 1);",
76
            "INSERT into apr_dbd_test values ('asdfgh', 'bar', 1)",
77
            NULL
77
            NULL
78
        };
78
        };
79
        printf("Compound insert failed; trying statements one-by-one\n") ;
79
        printf("Compound insert failed; trying statements one-by-one\n") ;

Return to bug 59072