diff options
author | Christian Schneider | 2020-07-01 16:33:03 +0200 |
---|---|---|
committer | Christian Schneider | 2020-07-01 16:33:03 +0200 |
commit | 083296d689e4a40dc0bebb0a6f69c8342d6d3a2e (patch) | |
tree | d9a73c78d744bc474b246ceefc6b96c58d2e96d8 /test | |
parent | 007ed5dbc6aac41ecbf020484b4ccf401f2a86fc (diff) | |
download | itools-083296d689e4a40dc0bebb0a6f69c8342d6d3a2e.tar.gz itools-083296d689e4a40dc0bebb0a6f69c8342d6d3a2e.tar.bz2 itools-083296d689e4a40dc0bebb0a6f69c8342d6d3a2e.zip |
Preserve type when writing int to dyncols
Diffstat (limited to 'test')
-rwxr-xr-x | test/it_dbi.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/it_dbi.t b/test/it_dbi.t index 45f70d4..5737404 100755 --- a/test/it_dbi.t +++ b/test/it_dbi.t @@ -323,6 +323,8 @@ is( # REPLACE (without and with quoting) $r = new it_dbi_test; $r->replace(['ID' => 5, '-key1' => "2*2"]); is($r->key1, 4); +$r->replace(['ID' => 5, 'key1' => 42]); is(json_encode($r->key1), json_encode(42), "Preserve type int on dyncols insert"); +$r->update(['key1' => 43]); is(json_encode($r->key1), json_encode(43), "Preserve type int on dyncols update"); $r->replace(['ID' => 5, 'key1' => "val0'"]); is($r->key1, "val0'"); # UPDATE with WHERE (without and with quoting) |