postgresql/src/tutorial
Tom Lane 8255c7a5ee Phase 2 pgindent run for v12.
Switch to 2.1 version of pg_bsd_indent.  This formats
multiline function declarations "correctly", that is with
additional lines of parameter declarations indented to match
where the first line's left parenthesis is.

Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
2019-05-22 13:04:48 -04:00
..
Makefile Rename 'gmake' to 'make' in docs and recommended commands 2014-02-12 17:29:19 -05:00
README Rename 'gmake' to 'make' in docs and recommended commands 2014-02-12 17:29:19 -05:00
advanced.source SQL comment: remove extra word in heading comment 2019-01-25 18:57:21 -05:00
basics.source Remove useless whitespace at end of lines 2010-11-23 22:34:55 +02:00
complex.c Deduplicate "invalid input syntax" messages for various types. 2018-07-22 14:58:01 -07:00
complex.source Update copyright for 2019 2019-01-02 12:44:25 -05:00
funcs.c Phase 2 pgindent run for v12. 2019-05-22 13:04:48 -04:00
funcs.source Remove useless whitespace at end of lines 2010-11-23 22:34:55 +02:00
funcs_new.c Phase 2 of pgindent updates. 2017-06-21 15:19:25 -04:00
syscat.source Update copyright for 2019 2019-01-02 12:44:25 -05:00

README

src/tutorial/README

tutorial
========

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.