Skip to content

Commit

Permalink
Tweak for 9.3devel.
Browse files Browse the repository at this point in the history
  • Loading branch information
umitanuki committed Sep 26, 2012
1 parent 8754b0d commit 42bf069
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion expected/startup_pre.out
@@ -1,8 +1,8 @@
SET client_min_messages = ERROR;
CREATE TABLE public.plv8_modules (
modname name primary key,
code text not null
);
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "plv8_modules_pkey" for table "plv8_modules"
insert into plv8_modules values ('testme','bar=98765;');
create function startup()
returns void
Expand Down
3 changes: 3 additions & 0 deletions plv8.cc
Expand Up @@ -15,6 +15,9 @@ extern "C" {
#define typename typename_
#define using using_

#if PG_VERSION_NUM >= 90300
#include "access/htup_details.h"
#endif
#include "access/xact.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
Expand Down
3 changes: 3 additions & 0 deletions plv8_type.cc
Expand Up @@ -14,6 +14,9 @@ extern "C" {
#define typename typename_
#define using using_

#if PG_VERSION_NUM >= 90300
#include "access/htup_details.h"
#endif
#include "catalog/pg_type.h"
#include "utils/array.h"
#include "utils/date.h"
Expand Down
1 change: 1 addition & 0 deletions sql/startup_pre.sql
@@ -1,3 +1,4 @@
SET client_min_messages = ERROR;
CREATE TABLE public.plv8_modules (
modname name primary key,
code text not null
Expand Down

0 comments on commit 42bf069

Please sign in to comment.