OSDN Git Service

[結合順序]試験のPG9.2用予測結果ファイルの試験番号と分類名を項目表の通りに更新した。
[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 );