mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
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.)
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
*
|
||||
* Copyright (c) 2001-2003, PostgreSQL Global Development Group
|
||||
*
|
||||
* $Id: pgstat.h,v 1.14 2003/04/26 02:57:14 tgl Exp $
|
||||
* $Id: pgstat.h,v 1.15 2003/04/27 20:09:44 tgl Exp $
|
||||
* ----------
|
||||
*/
|
||||
#ifndef PGSTAT_H
|
||||
@ -359,7 +359,7 @@ extern void pgstat_beterm(int pid);
|
||||
extern void pgstat_bestart(void);
|
||||
|
||||
extern void pgstat_ping(void);
|
||||
extern void pgstat_report_activity(char *what);
|
||||
extern void pgstat_report_activity(const char *what);
|
||||
extern void pgstat_report_tabstat(void);
|
||||
extern int pgstat_vacuum_tabstat(void);
|
||||
|
||||
|
Reference in New Issue
Block a user