Update corelibs for composer test

This commit is contained in:
Clemens Schwaighofer
2023-04-10 09:05:07 +09:00
parent 516b11f2f1
commit 37c3b6afeb
5 changed files with 7 additions and 7 deletions

View File

@@ -212,11 +212,11 @@ $query = <<<EOM
INSERT INTO
test_foo
(
test
test, string_a
) VALUES (
$1
$1, '$2'
)
RETURNING test
RETURNING test, string_a
EOM;
$db->dbPrepare("ins_test_foo_eom", $query);
$status = $db->dbExecute("ins_test_foo_eom", ['EOM BAR TEST ' . time()]);