diff options
author | Nathan Gass | 2020-09-03 11:16:20 +0200 |
---|---|---|
committer | Nathan Gass | 2020-09-03 11:16:20 +0200 |
commit | 9c9154157004dca26456c6216ef939449fdae020 (patch) | |
tree | 2d1b88841fc22cb193363ec6512ece9956d8ec19 /test/it_dbi.t | |
parent | 4f973c644130d4dd0068206d253f6a707a180e6b (diff) | |
download | itools-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-x | test/it_dbi.t | 2 |
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(); |