Put back encoding-conversion step in processing of incoming queries;
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 27 Apr 2003 20:09:44 +0000 (20:09 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 27 Apr 2003 20:09:44 +0000 (20:09 +0000)
commit982430f8469dfc0fd9d9196862f34a2c3fc7dc13
tree5f672e30ddd44b4548ba3e18f534fd5008bf3fa8
parent351372e585746538ef080bfe1219de3f3074a025
Put back encoding-conversion step in processing of incoming queries;
I had inadvertently omitted it while rearranging things to support
length-counted incoming messages.  Also, change the parser's API back
to accepting a 'char *' query string instead of 'StringInfo', as the
latter wasn't buying us anything except overhead.  (I think when I put
it in I had some notion of making the parser API 8-bit-clean, but
seeing that flex depends on null-terminated input, that's not really
ever gonna happen.)
src/backend/executor/spi.c
src/backend/optimizer/util/clauses.c
src/backend/parser/parse_type.c
src/backend/parser/parser.c
src/backend/parser/scan.l
src/backend/postmaster/pgstat.c
src/backend/tcop/postgres.c
src/include/parser/gramparse.h
src/include/parser/parser.h
src/include/pgstat.h
src/include/tcop/tcopprot.h