Changes between Version 1 and Version 2 of Ticket #22678, comment 2


Ignore:
Timestamp:
May 22, 2014, 4:42:12 PM (10 years ago)
Author:
brycenesbitt

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22678, comment 2

    v1 v2  
    1 I intended to convey that above: the issue is the integer.  Strings work, integers don't.
     1I intended to convey that above: the issue is the integer key.  Strings work, integers don't.
    22The form as built 'looked' like reasonable code, but had a murky and hard to track problem.
    33Most code paths blow up on integers, but not this one.
    44
    55
    6 The proposed fix is to assert on string for the key.
     6The proposed fix is to assert on string for the key.... or almost as good perform the string
     7concatenation (e.g. 'id_'+key) in all cases, so it blows up nice and fast with any form of key that
     8does not actually fully work.
Back to Top