summaryrefslogtreecommitdiff
path: root/test/it_dbi.t
diff options
context:
space:
mode:
authorNathan Gass2020-09-03 11:16:20 +0200
committerNathan Gass2020-09-03 11:16:20 +0200
commit9c9154157004dca26456c6216ef939449fdae020 (patch)
tree2d1b88841fc22cb193363ec6512ece9956d8ec19 /test/it_dbi.t
parent4f973c644130d4dd0068206d253f6a707a180e6b (diff)
downloaditools-9c9154157004dca26456c6216ef939449fdae020.tar.gz
itools-9c9154157004dca26456c6216ef939449fdae020.tar.bz2
itools-9c9154157004dca26456c6216ef939449fdae020.zip
handle postgresql implementation of mysql replace
Diffstat (limited to 'test/it_dbi.t')
-rwxr-xr-xtest/it_dbi.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/it_dbi.t b/test/it_dbi.t
index 6cc0ec1..42a230c 100755
--- a/test/it_dbi.t
+++ b/test/it_dbi.t
@@ -250,7 +250,7 @@ $GLOBALS['debug_sqllog'] = true;
@$record->store(['ID' => 5, 'x' => 6]);
like(
$record->_sqllog[1]['query'],
- "REPLACE",
+ "REPLACE|ON CONFLICT",
"store => REPLACE for new entries"
);
$record->clear();