OSDN Git Service

No.S-2-3の試験のPG9.1用予測結果を更新した。
[pghintplan/pg_hint_plan.git] / pg_hint_plan--1.0.sql
1 /* pg_hint_plan/pg_hint_plan--1.0.sql */
2
3 -- complain if script is sourced in psql, rather than via CREATE EXTENSION
4 \echo Use "CREATE EXTENSION pg_hint_plan" to load this file. \quit
5
6 CREATE TABLE hint_plan.hints (
7         norm_query_string       text    NOT NULL,
8         application_name        text    NOT NULL,
9         hints                           text    NOT NULL,
10         PRIMARY KEY (norm_query_string, application_name)
11 );