postgresql/src/tutorial
Tom Lane 902a6a0a4b Restructure representation of aggregate functions so that they have pg_proc
entries, per pghackers discussion.  This fixes aggregates to live in
namespaces, and also simplifies/speeds up lookup in parse_func.c.
Also, add a 'proimplicit' flag to pg_proc that controls whether a type
coercion function may be invoked implicitly, or only explicitly.  The
current settings of these flags are more permissive than I would like,
but we will need to debate and refine the behavior; for now, I avoided
breaking regression tests as much as I could.
2002-04-11 20:00:18 +00:00
..
advanced.source New blood and fresh air for tutorial 2001-09-02 23:27:50 +00:00
basics.source New blood and fresh air for tutorial 2001-09-02 23:27:50 +00:00
beard.c New pgindent run with fixes suggested by Tom. Patch manually reviewed, 2001-11-05 17:46:40 +00:00
complex.c New pgindent run with fixes suggested by Tom. Patch manually reviewed, 2001-11-05 17:46:40 +00:00
complex.source Remove no-longer-needed dependencies on DLSUFFIX. 2001-10-26 20:45:33 +00:00
funcs.c pgindent run on all C files. Java run to follow. initdb/regression 2001-10-25 05:50:21 +00:00
funcs.source Remove no-longer-needed dependencies on DLSUFFIX. 2001-10-26 20:45:33 +00:00
funcs_new.c pgindent run. Make it all clean. 2001-03-22 04:01:46 +00:00
Makefile Remove no-longer-needed dependencies on DLSUFFIX. 2001-10-26 20:45:33 +00:00
README Remove no-longer-needed dependencies on DLSUFFIX. 2001-10-26 20:45:33 +00:00
syscat.source Restructure representation of aggregate functions so that they have pg_proc 2002-04-11 20:00:18 +00:00

This directory contains SQL tutorial scripts.  To look at them, first do a
	% make
to compile all the scripts and C files for the user-defined functions
and types.  (make needs to be GNU make --- it may be named something
different on your system, often gmake)

Then, run psql with the -s (single-step) flag:
	% psql -s

From within psql, you can try each individual script file by using
psql's \i <filename> command.