File: horology-errors.out

package info (click to toggle)
postgresql-pllua 1%3A2.0.12-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,260 kB
  • sloc: ansic: 14,420; sql: 2,193; makefile: 170; sh: 59; javascript: 38
file content (9 lines) | stat: -rw-r--r-- 290 bytes parent folder | download
1
2
3
4
5
6
7
8
9
--
\set VERBOSITY terse
--
set timezone = 'GMT';
set datestyle = 'ISO,YMD';
-- errors (not worth testing many combinations, they all share a code path)
do language pllua $$ print(pgtype.time('03:45:01.234567').dow) $$;
ERROR:  unit "dow" not supported for type time without time zone
--end