Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  create_misc.sql

  Sprache: SQL
 

--
-- CREATE_MISC
--

--
-- a is the type root
-- b and c inherit from a (one-level single inheritance)
-- d inherits from b and c (two-level multiple inheritance)
-- e inherits from c (two-level single inheritance)
-- f inherits from e (three-level single inheritance)
--
CREATE TABLE a_star (
 class  char,
 a    int4
);

CREATE TABLE b_star (
 b    text
) INHERITS (a_star);

CREATE TABLE c_star (
 c    name
) INHERITS (a_star);

CREATE TABLE d_star (
 d    float8
) INHERITS (b_star, c_star);

CREATE TABLE e_star (
 e    int2
) INHERITS (c_star);

CREATE TABLE f_star (
 f    polygon
) INHERITS (e_star);

INSERT INTO a_star (class, a) VALUES ('a'1);

INSERT INTO a_star (class, a) VALUES ('a'2);

INSERT INTO a_star (class) VALUES ('a');

INSERT INTO b_star (class, a, b) VALUES ('b'3'mumble'::text);

INSERT INTO b_star (class, a) VALUES ('b'4);

INSERT INTO b_star (class, b) VALUES ('b''bumble'::text);

INSERT INTO b_star (class) VALUES ('b');

INSERT INTO c_star (class, a, c) VALUES ('c'5'hi mom'::name);

INSERT INTO c_star (class, a) VALUES ('c'6);

INSERT INTO c_star (class, c) VALUES ('c''hi paul'::name);

INSERT INTO c_star (class) VALUES ('c');

INSERT INTO d_star (class, a, b, c, d)
   VALUES ('d'7'grumble'::text, 'hi sunita'::name, '0.0'::float8);

INSERT INTO d_star (class, a, b, c)
   VALUES ('d'8'stumble'::text, 'hi koko'::name);

INSERT INTO d_star (class, a, b, d)
   VALUES ('d'9'rumble'::text, '1.1'::float8);

INSERT INTO d_star (class, a, c, d)
   VALUES ('d'10'hi kristin'::name, '10.01'::float8);

INSERT INTO d_star (class, b, c, d)
   VALUES ('d''crumble'::text, 'hi boris'::name, '100.001'::float8);

INSERT INTO d_star (class, a, b)
   VALUES ('d'11'fumble'::text);

INSERT INTO d_star (class, a, c)
   VALUES ('d'12'hi avi'::name);

INSERT INTO d_star (class, a, d)
   VALUES ('d'13'1000.0001'::float8);

INSERT INTO d_star (class, b, c)
   VALUES ('d''tumble'::text, 'hi andrew'::name);

INSERT INTO d_star (class, b, d)
   VALUES ('d''humble'::text, '10000.00001'::float8);

INSERT INTO d_star (class, c, d)
   VALUES ('d''hi ginger'::name, '100000.000001'::float8);

INSERT INTO d_star (class, a) VALUES ('d'14);

INSERT INTO d_star (class, b) VALUES ('d''jumble'::text);

INSERT INTO d_star (class, c) VALUES ('d''hi jolly'::name);

INSERT INTO d_star (class, d) VALUES ('d''1000000.0000001'::float8);

INSERT INTO d_star (class) VALUES ('d');

INSERT INTO e_star (class, a, c, e)
   VALUES ('e'15'hi carol'::name, '-1'::int2);

INSERT INTO e_star (class, a, c)
   VALUES ('e'16'hi bob'::name);

INSERT INTO e_star (class, a, e)
   VALUES ('e'17'-2'::int2);

INSERT INTO e_star (class, c, e)
   VALUES ('e''hi michelle'::name, '-3'::int2);

INSERT INTO e_star (class, a)
   VALUES ('e'18);

INSERT INTO e_star (class, c)
   VALUES ('e''hi elisa'::name);

INSERT INTO e_star (class, e)
   VALUES ('e''-4'::int2);

INSERT INTO f_star (class, a, c, e, f)
   VALUES ('f'19'hi claire'::name, '-5'::int2'(1,3),(2,4)'::polygon);

INSERT INTO f_star (class, a, c, e)
   VALUES ('f'20'hi mike'::name, '-6'::int2);

INSERT INTO f_star (class, a, c, f)
   VALUES ('f'21'hi marcel'::name, '(11,44),(22,55),(33,66)'::polygon);

INSERT INTO f_star (class, a, e, f)
   VALUES ('f'22'-7'::int2'(111,555),(222,666),(333,777),(444,888)'::polygon);

INSERT INTO f_star (class, c, e, f)
   VALUES ('f''hi keith'::name, '-8'::int2,
    '(1111,3333),(2222,4444)'::polygon);

INSERT INTO f_star (class, a, c)
   VALUES ('f'24'hi marc'::name);

INSERT INTO f_star (class, a, e)
   VALUES ('f'25'-9'::int2);

INSERT INTO f_star (class, a, f)
   VALUES ('f'26'(11111,33333),(22222,44444)'::polygon);

INSERT INTO f_star (class, c, e)
   VALUES ('f''hi allison'::name, '-10'::int2);

INSERT INTO f_star (class, c, f)
   VALUES ('f''hi jeff'::name,
           '(111111,333333),(222222,444444)'::polygon);

INSERT INTO f_star (class, e, f)
   VALUES ('f''-11'::int2'(1111111,3333333),(2222222,4444444)'::polygon);

INSERT INTO f_star (class, a) VALUES ('f'27);

INSERT INTO f_star (class, c) VALUES ('f''hi carl'::name);

INSERT INTO f_star (class, e) VALUES ('f''-12'::int2);

INSERT INTO f_star (class, f)
   VALUES ('f''(11111111,33333333),(22222222,44444444)'::polygon);

INSERT INTO f_star (class) VALUES ('f');

-- Analyze the X_star tables for better plan stability in later tests
ANALYZE a_star;
ANALYZE b_star;
ANALYZE c_star;
ANALYZE d_star;
ANALYZE e_star;
ANALYZE f_star;

--
-- inheritance stress test
--
SELECT * FROM a_star*;

SELECT *
   FROM b_star* x
   WHERE x.b = text 'bumble' or x.a < 3;

SELECT class, a
   FROM c_star* x
   WHERE x.c ~ text 'hi';

SELECT class, b, c
   FROM d_star* x
   WHERE x.a < 100;

SELECT class, c FROM e_star* x WHERE x.c NOTNULL;

SELECT * FROM f_star* x WHERE x.c ISNULL;

-- grouping and aggregation on inherited sets have been busted in the past...

SELECT sum(a) FROM a_star*;

SELECT class, sum(a) FROM a_star* GROUP BY class ORDER BY class;


ALTER TABLE f_star RENAME COLUMN f TO ff;

ALTER TABLE e_star* RENAME COLUMN e TO ee;

ALTER TABLE d_star* RENAME COLUMN d TO dd;

ALTER TABLE c_star* RENAME COLUMN c TO cc;

ALTER TABLE b_star* RENAME COLUMN b TO bb;

ALTER TABLE a_star* RENAME COLUMN a TO aa;

SELECT class, aa
   FROM a_star* x
   WHERE aa ISNULL;

-- As of Postgres 7.1, ALTER implicitly recurses,
-- so this should be same as ALTER a_star*

ALTER TABLE a_star RENAME COLUMN aa TO foo;

SELECT class, foo
   FROM a_star* x
   WHERE x.foo >= 2;

ALTER TABLE a_star RENAME COLUMN foo TO aa;

SELECT *
   from a_star*
   WHERE aa < 1000;

ALTER TABLE f_star ADD COLUMN f int4;

UPDATE f_star SET f = 10;

ALTER TABLE e_star* ADD COLUMN e int4;

--UPDATE e_star* SET e = 42;

SELECT * FROM e_star*;

ALTER TABLE a_star* ADD COLUMN a text;

-- That ALTER TABLE should have added TOAST tables.
SELECT relname, reltoastrelid <> 0 AS has_toast_table
   FROM pg_class
   WHERE oid::regclass IN ('a_star''c_star')
   ORDER BY 1;

--UPDATE b_star*
--   SET a = text 'gazpacho'
--   WHERE aa > 4;

SELECT class, aa, a FROM a_star*;

Messung V0.5 in Prozent
C=84 H=96 G=90

¤ Dauer der Verarbeitung: 0.21 Sekunden  (vorverarbeitet am  2026-08-08) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002