pike.git
/
lib
/
modules
/
Sql.pmod
/
pgsql_util.pmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/lib/modules/Sql.pmod/pgsql_util.pmod:19:
#include "pgsql.h" //! The instance of the pgsql dedicated backend. final Pike.Backend local_backend = Pike.SmallBackend(); private Thread.Mutex backendmux = Thread.Mutex(); private int clientsregistered; constant emptyarray = ({}); constant describenodata
-
= (["datarowdesc":emptyarray,"datarowtypes":emptyarray]);
+
= (["datarowdesc":emptyarray,
"datarowtypes":emptyarray
,
+
"datatypeoid":emptyarray
]);
final multiset censoroptions=(<"use_ssl","force_ssl", "cache_autoprepared_statements","reconnect","text_query","is_superuser", "server_encoding","server_version","integer_datetimes", "session_authorization">); /* Statements matching createprefix cause the prepared statement cache * to be flushed to prevent stale references to (temporary) tables */ final Regexp createprefix=iregexp("^\a*(CREATE|DROP)\a");