~aglenyoung/+junk/postgres-9.3-dtrace

« back to all changes in this revision

Viewing changes to src/include/utils/builtins.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Christoph Berg, Martin Pitt
  • Date: 2013-06-26 15:13:32 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130626151332-p34yjpn0txbdsdzd
Tags: 9.3~beta2-1
[ Christoph Berg ]
* hurd-i386: Ignore testsuite failures so we have a working libpq5 (they
  don't implement semaphores so the server won't even start).
* Mark postgresql-9.3 as beta in the description, suggested by Joshua D.
  Drake.

[ Martin Pitt ]
* New upstream release 9.3 beta2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
485
485
extern Datum pg_get_keywords(PG_FUNCTION_ARGS);
486
486
extern Datum pg_typeof(PG_FUNCTION_ARGS);
487
487
extern Datum pg_collation_for(PG_FUNCTION_ARGS);
488
 
extern Datum pg_view_is_insertable(PG_FUNCTION_ARGS);
489
 
extern Datum pg_view_is_updatable(PG_FUNCTION_ARGS);
 
488
extern Datum pg_relation_is_updatable(PG_FUNCTION_ARGS);
 
489
extern Datum pg_column_is_updatable(PG_FUNCTION_ARGS);
490
490
 
491
491
/* oid.c */
492
492
extern Datum oidin(PG_FUNCTION_ARGS);
576
576
extern Datum regexp_split_to_array(PG_FUNCTION_ARGS);
577
577
extern Datum regexp_split_to_array_no_flags(PG_FUNCTION_ARGS);
578
578
extern char *regexp_fixed_prefix(text *text_re, bool case_insensitive,
579
 
                                                                 Oid collation, bool *exact);
 
579
                                        Oid collation, bool *exact);
580
580
 
581
581
/* regproc.c */
582
582
extern Datum regprocin(PG_FUNCTION_ARGS);