postgresql/src/tutorial
Tom Lane 020794ee42 Pre-beta mechanical code beautification, step 1: run pgindent.
Update typedefs.list from the buildfarm, and run pgindent.
The changes from the new typedefs list are pretty minimal,
since we'd been pretty good (not perfect) about updating
typedefs.list by hand.  But the pgindent behavior changes
installed by a3e6beba6, b518ba4af, and 60f9467c3 add up
to make this a relatively sizable diff.
2026-05-13 10:34:17 -04:00
..
.gitignore Add .gitignore to src/tutorial/ 2019-11-22 21:14:54 +09:00
advanced.source Doc: simplify the tutorial's window-function examples. 2025-01-21 14:43:21 -05:00
basics.source Doc: sync src/tutorial/basics.source with SGML documentation. 2022-11-19 13:09:14 -05:00
complex.c Pre-beta mechanical code beautification, step 1: run pgindent. 2026-05-13 10:34:17 -04:00
complex.source Update copyright for 2026 2026-01-01 13:24:10 -05:00
funcs.c Use palloc_object() and palloc_array() in more areas of the tree 2025-12-09 14:53:17 +09:00
funcs.source Add documentation about calling version-1 C functions from C. 2025-01-17 14:37:38 -05: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
syscat.source Force standard_conforming_strings to always be ON. 2026-01-21 15:08:38 -05:00

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.