]> granicus.if.org Git - php/commitdiff
Revert last completely broken patch.
authorSascha Schumann <sas@php.net>
Sat, 20 Jan 2001 10:10:50 +0000 (10:10 +0000)
committerSascha Schumann <sas@php.net>
Sat, 20 Jan 2001 10:10:50 +0000 (10:10 +0000)
ext/pgsql/pgsql.c

index da6b87bdb42fbbd7f7145f04a4c9dd5cd7a87c62..4962ca92bc3d5b45c4efcdfff2a4802f2fde5063 100644 (file)
@@ -75,8 +75,6 @@ function_entry pgsql_functions[] = {
        PHP_FE(pg_loreadall,    NULL)
        PHP_FE(pg_loimport,             NULL)
        PHP_FE(pg_loexport,             NULL)
-       PHP_FE(pg_lolseek,              NULL)
-       PHP_FE(pg_lotell,               NULL)
        PHP_FE(pg_put_line,             NULL)
        PHP_FE(pg_end_copy,             NULL)
 #if HAVE_PQCLIENTENCODING
@@ -1738,59 +1736,6 @@ PHP_FUNCTION(pg_loexport)
 }
 /* }}} */
 
-/* {{{ proto int pg_lolseek(int objoid, int offset, int whence)
-   Seek into a postgres large object*/
-PHP_FUNCTION(pg_lolseek) {
-       val **pgsql_lofp, **seek_offset, **seek_whence;
-       gLofp *pgsql;
-
-       switch(ZEND_NUM_ARGS()) {
-               case 3:
-                       if (zend_get_parameters_ex(3, &pgsql_lofp, &seek_offset, &seek_whence)==FAILURE) {
-                               RETURN_FALSE;
-                       }
-                       convert_to_long_ex(seek_offset);
-                       convert_to_long_ex(seek_whence);
-                       break;
-               default:
-                       WRONG_PARAM_COUNT;
-                       break;
-       }
-
-       ZEND_FETCH_RESOURCE(pgsql, pgLofp *, pgsql_lofp, -1, "PostgreSQL large object", le_lofp);
-       if (lo_lseek((PGconn *)pgsql->conn, pgsql->lofd, Z_STRVAL_PP(seek_offset), Z_STRVAL_PP(seek_whence))) {
-               RETURN_TRUE;
-       } else {
-               RETURN_FALSE;
-       }
-}
-/* }}} */
-
-/* {{{ proto int pg_tell(int objoid)
-        return current offset into large object */
-PHP_FUNCTION(pg_lotell) {
-       long int offset;
-       zval **pgsql_lofp;
-       pgLofp *pgsql;
-
-       switch(ZEND_NUM_ARGS()) {
-               case 1:
-                       if (zend_get_parameters_ex(1, &pgsql_lofp)==FAILURE) {
-                               RETURN_FALSE;
-                       }
-                       break;
-               default:
-                       WRONG_PARAM_COUNT;
-                       break;
-       }
-
-       END_FETCH_RESOURCE(pgsql, pgLofp *, pgsql_lofp, -1, "PostgreSQL large object", le_lofp);
-       ffset = lo_tell((PGconn *)pgsql->conn, pgsql->lofd);
-       ETURN_LONG (offset);
-}
-/* }}} */
-
 #if HAVE_PQCLIENTENCODING
 
 /* {{{ proto int pg_set_client_encoding([int connection,] string encoding)