postgres/src/tutorial
Álvaro Herrera c53775185d
Fix compile of src/tutorial/funcs.c
I broke this with recent #include removals.  Fix by adding an explicit

Reported-by: Devrim Gündüz <devrim@gunduz.org>
Discussion: https://postgr.es/m/5e2c2d7c44434f3f0af7523864b27fe4fb590902.camel@gunduz.org
2025-10-07 10:45:57 +02: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 Deduplicate "invalid input syntax" messages for various types. 2018-07-22 14:58:01 -07:00
complex.source Update copyright for 2025 2025-01-01 11:21:55 -05:00
funcs.c Fix compile of src/tutorial/funcs.c 2025-10-07 10:45:57 +02: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 Update copyright for 2025 2025-01-01 11:21:55 -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.