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/pgsql.c | |
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/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 15546a733a..4b3e4a2d00 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -146,7 +146,7 @@ function_entry pgsql_functions[] = { PHP_FE(pg_set_client_encoding, NULL) #endif /* misc function */ - PHP_FE(pg_metadata, NULL) + PHP_FE(pg_meta_data, NULL) PHP_FE(pg_convert, NULL) PHP_FE(pg_insert, NULL) PHP_FE(pg_update, NULL) @@ -2809,10 +2809,10 @@ PHP_FUNCTION(pg_result_status) } /* }}} */ -/* {{{ php_pgsql_metadata - * TODO: Add metadata cache for better performance +/* {{{ php_pgsql_meta_data + * TODO: Add meta_data cache for better performance */ -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) { PGresult *pg_result; char *tmp_name; @@ -2835,7 +2835,7 @@ PHPAPI int php_pgsql_metadata(PGconn *pg_link, const char *table_name, zval *met pg_result = PQexec(pg_link, querystr.c); if (PQresultStatus(pg_result) != PGRES_TUPLES_OK || (num_rows = PQntuples(pg_result)) == 0) { - php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Failed to query metadata for '%s' table %s", table_name, querystr.c); + php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Failed to query meta_data for '%s' table %s", table_name, querystr.c); smart_str_free(&querystr); PQclear(pg_result); return FAILURE; @@ -2871,9 +2871,9 @@ PHPAPI int php_pgsql_metadata(PGconn *pg_link, const char *table_name, zval *met /* }}} */ -/* {{{ proto array pg_metadata(resource db, string table) - Get metadata */ -PHP_FUNCTION(pg_metadata) +/* {{{ proto array pg_meta_data(resource db, string table) + Get meta_data */ +PHP_FUNCTION(pg_meta_data) { zval *pgsql_link; char *table_name; @@ -2889,7 +2889,7 @@ PHP_FUNCTION(pg_metadata) ZEND_FETCH_RESOURCE2(pgsql, PGconn *, &pgsql_link, id, "PostgreSQL link", le_link, le_plink); array_init(return_value); - if (php_pgsql_metadata(pgsql, table_name, return_value TSRMLS_CC) == FAILURE) { + if (php_pgsql_meta_data(pgsql, table_name, return_value TSRMLS_CC) == FAILURE) { zval_dtor(return_value); /* destroy array */ RETURN_FALSE; } @@ -3094,7 +3094,7 @@ PHPAPI int php_pgsql_convert(PGconn *pg_link, const char *table_name, const zval FREE_ZVAL(meta); return FAILURE; } - if (php_pgsql_metadata(pg_link, table_name, meta TSRMLS_CC) == FAILURE) { + if (php_pgsql_meta_data(pg_link, table_name, meta TSRMLS_CC) == FAILURE) { zval_dtor(meta); FREE_ZVAL(meta); return FAILURE; |