postgresql/src/tutorial
Andres Freund 3522d0eaba Deduplicate "invalid input syntax" messages for various types.
Previously a lot of the error messages referenced the type in the
error message itself. That requires that the message is translated
separately for each type.

Note that currently a few smallint cases continue to reference the
integer, rather than smallint, type. A later patch will create a
separate routine for 16bit input.

Author: Andres Freund
Discussion: https://postgr.es/m/20180707200158.wpqkd7rjr4jxq5g7@alap3.anarazel.de
2018-07-22 14:58:01 -07: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 Remove useless whitespace at end of lines 2010-11-23 22:34:55 +02: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 2018 2018-01-02 23:30:12 -05:00
funcs.c Phase 2 of pgindent updates. 2017-06-21 15:19:25 -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 2018 2018-01-02 23:30:12 -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.