Re: [HACKERS] Tab completion of double quoted identifiers broken

2012-03-31 Thread Tom Lane
Dean Rasheed writes: > I just spotted that tab completion of double quoted identifiers seems > to be broken in 9.2devel. Yeah, looks like I broke it :-( --- I think I missed the fact that the last check with WORD_BREAKS was looking at the previous character not the current one, so I thought addin

[HACKERS] Tab completion of double quoted identifiers broken

2012-03-31 Thread Dean Rasheed
Hi, I just spotted that tab completion of double quoted identifiers seems to be broken in 9.2devel. For example things like this which worked in 9.1 no longer work: UPDATE "foo bar" It looks like the problem is in get_previous_words() here: if (buf[start] == '"')