diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-10-02 02:11:27 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-10-02 02:11:27 +0000 |
commit | f8f11ac0a2566f100d525fc2830b31ce20ac8f0e (patch) | |
tree | 24df307520a5309bdab3235aa723c9eb6271bc7b /ext/pgsql/php_pgsql.h | |
parent | fc721174c830d5c87b8fc2c08c294ae7db750ee5 (diff) | |
download | php-git-f8f11ac0a2566f100d525fc2830b31ce20ac8f0e.tar.gz |
Rename pg_metadata() to pg_meta_data() to confirm naming standard
Diffstat (limited to 'ext/pgsql/php_pgsql.h')
-rw-r--r-- | ext/pgsql/php_pgsql.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pgsql/php_pgsql.h b/ext/pgsql/php_pgsql.h index 552f86230c..644ec7d5ac 100644 --- a/ext/pgsql/php_pgsql.h +++ b/ext/pgsql/php_pgsql.h @@ -130,7 +130,7 @@ PHP_FUNCTION(pg_escape_bytea); #endif /* misc functions */ -PHP_FUNCTION(pg_metadata); +PHP_FUNCTION(pg_meta_data); PHP_FUNCTION(pg_convert); PHP_FUNCTION(pg_insert); PHP_FUNCTION(pg_update); @@ -149,7 +149,7 @@ PHP_FUNCTION(pg_select); #define PGSQL_DML_STRING (1<<11) /* Return query string */ /* exported functions */ -PHPAPI int php_pgsql_metadata(PGconn *pg_link, const char *table_name, zval *meta TSRMLS_DC); +PHPAPI int php_pgsql_meta_data(PGconn *pg_link, const char *table_name, zval *meta TSRMLS_DC); PHPAPI int php_pgsql_convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, ulong opt TSRMLS_DC); PHPAPI int php_pgsql_insert(PGconn *pg_link, const char *table, zval *values, ulong opt, char **sql TSRMLS_DC); PHPAPI int php_pgsql_update(PGconn *pg_link, const char *table, zval *values, zval *ids, ulong opt , char **sql TSRMLS_DC); |