openbsd-ports/databases/postgresql/pkg/PFRAG.tcl

149 lines
6.7 KiB
Tcl
Raw Normal View History

@comment $OpenBSD: PFRAG.tcl,v 1.8 2001/09/03 23:24:37 brad Exp $
2001-02-22 14:28:12 -05:00
bin/pgaccess
bin/pgtclsh
bin/pgtksh
Upgrade to postgresql 7.1. ok'd espie@ * The package is now called `postgresql' and not `pgsql'. * The default user that is suggested for the admin account is also `postgresql'. This will work with OpenBSD-current with long username support. If anything breaks please report to the maintainers. * pgwrap is no longer shipped or supported * Please note, you will HAVE TO BACKUP your old data if you are upgrading from a previous release of postgresql. Do this before removing the old pgsql package. From the announcement last weekend: Key New Features and Capabilities of Version 7.1 Include: * Write-ahead Log (WAL) increases data integrity and processing speed. To maintain database consistency in case of an operating system crash, previous releases of PostgreSQL have forced all all data modifications to disk before each transaction commit. With WAL, only one log file must be flushed to disk, greatly improving performance. (Tech note: can eliminate use of -F in to disable disk flushes) * TOAST (The Oversized-Attribute Storage Technique) Past releases had compiled-in row length limit typically between 8Kb & 32Kb. This restriction made storage of long text fields difficult, cumbersome and slow. TOAST enables rows of any length while maintaing the high performance PostgreSQL users have come to expect. * SQL92 Outer Joins are now supported. (Tech note: eliminates the UNION/NOT IN workaround) * 64-bit C Language Function Manager support The previous C function manager did not handle support 64-bit CPU's (e.g. Alpha, Sun, Itanium). (Tech note: This change should not impact existing custom functions developed for past versions, but performance will be improved through rewriting to use the new call interface.) * Complex Queries that are better, stronger and faster Many complex queries were unsupported in previous releases. With v7.1 combinations of views, aggregates, UNION, LIMIT, cursors, subqueries, and inherited tables are enabled. Inherited tables are now accessed by default, and subqueries in FROM are now supported.
2001-04-21 14:25:42 -04:00
include/postgresql/libpgtcl.h
lib/libpgtcl.a
%%SHARED-tcl%%
2001-02-22 14:28:12 -05:00
man/man1/pgaccess.1
man/man1/pgtclsh.1
man/man1/pgtksh.1
share/postgresql/pgaccess/images/icon_button.gif
share/postgresql/pgaccess/images/icon_checkbutton.gif
share/postgresql/pgaccess/images/icon_entry.gif
share/postgresql/pgaccess/images/icon_frame.gif
share/postgresql/pgaccess/images/icon_label.gif
share/postgresql/pgaccess/images/icon_listbox.gif
share/postgresql/pgaccess/images/icon_query.gif
share/postgresql/pgaccess/images/icon_radiobutton.gif
share/postgresql/pgaccess/images/icon_text.gif
share/postgresql/pgaccess/lib/database.tcl
share/postgresql/pgaccess/lib/forms.tcl
share/postgresql/pgaccess/lib/functions.tcl
share/postgresql/pgaccess/lib/help.tcl
share/postgresql/pgaccess/lib/help/abort.hlp
share/postgresql/pgaccess/lib/help/add_records.hlp
share/postgresql/pgaccess/lib/help/alter_table.hlp
share/postgresql/pgaccess/lib/help/alter_user.hlp
share/postgresql/pgaccess/lib/help/author.hlp
share/postgresql/pgaccess/lib/help/begin.hlp
share/postgresql/pgaccess/lib/help/close.hlp
share/postgresql/pgaccess/lib/help/cluster.hlp
share/postgresql/pgaccess/lib/help/commit.hlp
share/postgresql/pgaccess/lib/help/copy.hlp
share/postgresql/pgaccess/lib/help/copyrights.hlp
share/postgresql/pgaccess/lib/help/create_aggregate.hlp
share/postgresql/pgaccess/lib/help/create_database.hlp
share/postgresql/pgaccess/lib/help/create_function.hlp
share/postgresql/pgaccess/lib/help/create_index.hlp
share/postgresql/pgaccess/lib/help/create_language.hlp
share/postgresql/pgaccess/lib/help/create_operator.hlp
share/postgresql/pgaccess/lib/help/create_rule.hlp
share/postgresql/pgaccess/lib/help/create_sequence.hlp
share/postgresql/pgaccess/lib/help/create_table.hlp
share/postgresql/pgaccess/lib/help/create_table_as.hlp
share/postgresql/pgaccess/lib/help/create_trigger.hlp
share/postgresql/pgaccess/lib/help/create_type.hlp
share/postgresql/pgaccess/lib/help/create_user.hlp
share/postgresql/pgaccess/lib/help/create_view.hlp
share/postgresql/pgaccess/lib/help/data_types.hlp
share/postgresql/pgaccess/lib/help/datefunc.hlp
share/postgresql/pgaccess/lib/help/declare.hlp
share/postgresql/pgaccess/lib/help/delete.hlp
share/postgresql/pgaccess/lib/help/drop_aggregate.hlp
share/postgresql/pgaccess/lib/help/drop_database.hlp
share/postgresql/pgaccess/lib/help/drop_function.hlp
share/postgresql/pgaccess/lib/help/drop_index.hlp
share/postgresql/pgaccess/lib/help/drop_language.hlp
share/postgresql/pgaccess/lib/help/drop_operator.hlp
share/postgresql/pgaccess/lib/help/drop_rule.hlp
share/postgresql/pgaccess/lib/help/drop_sequence.hlp
share/postgresql/pgaccess/lib/help/drop_table.hlp
share/postgresql/pgaccess/lib/help/drop_trigger.hlp
share/postgresql/pgaccess/lib/help/drop_type.hlp
share/postgresql/pgaccess/lib/help/drop_user.hlp
share/postgresql/pgaccess/lib/help/drop_view.hlp
share/postgresql/pgaccess/lib/help/explain.hlp
share/postgresql/pgaccess/lib/help/fetch.hlp
share/postgresql/pgaccess/lib/help/form_design.hlp
share/postgresql/pgaccess/lib/help/forms.hlp
share/postgresql/pgaccess/lib/help/functions.hlp
share/postgresql/pgaccess/lib/help/geomfunc.hlp
share/postgresql/pgaccess/lib/help/grant.hlp
share/postgresql/pgaccess/lib/help/history.hlp
share/postgresql/pgaccess/lib/help/index.hlp
share/postgresql/pgaccess/lib/help/inheritance.hlp
share/postgresql/pgaccess/lib/help/insert.hlp
share/postgresql/pgaccess/lib/help/ipv4func.hlp
share/postgresql/pgaccess/lib/help/isolation.hlp
share/postgresql/pgaccess/lib/help/keywords.hlp
share/postgresql/pgaccess/lib/help/listen.hlp
share/postgresql/pgaccess/lib/help/load.hlp
share/postgresql/pgaccess/lib/help/lock.hlp
share/postgresql/pgaccess/lib/help/mathfunc.hlp
share/postgresql/pgaccess/lib/help/move.hlp
share/postgresql/pgaccess/lib/help/mvcc.hlp
share/postgresql/pgaccess/lib/help/new_query.hlp
share/postgresql/pgaccess/lib/help/new_table.hlp
share/postgresql/pgaccess/lib/help/notify.hlp
share/postgresql/pgaccess/lib/help/open_query.hlp
share/postgresql/pgaccess/lib/help/open_table.hlp
share/postgresql/pgaccess/lib/help/pgfunctions.hlp
share/postgresql/pgaccess/lib/help/postgresql.hlp
share/postgresql/pgaccess/lib/help/queries.hlp
share/postgresql/pgaccess/lib/help/reports.hlp
share/postgresql/pgaccess/lib/help/reset.hlp
share/postgresql/pgaccess/lib/help/revoke.hlp
share/postgresql/pgaccess/lib/help/rollback.hlp
share/postgresql/pgaccess/lib/help/schema.hlp
share/postgresql/pgaccess/lib/help/scripts.hlp
share/postgresql/pgaccess/lib/help/select.hlp
share/postgresql/pgaccess/lib/help/select_into.hlp
share/postgresql/pgaccess/lib/help/sequences.hlp
share/postgresql/pgaccess/lib/help/set.hlp
share/postgresql/pgaccess/lib/help/show.hlp
share/postgresql/pgaccess/lib/help/sql_guide.hlp
share/postgresql/pgaccess/lib/help/sqlfunc.hlp
share/postgresql/pgaccess/lib/help/stringfunc.hlp
share/postgresql/pgaccess/lib/help/tables.hlp
share/postgresql/pgaccess/lib/help/unlisten.hlp
share/postgresql/pgaccess/lib/help/update.hlp
share/postgresql/pgaccess/lib/help/users.hlp
share/postgresql/pgaccess/lib/help/vacuum.hlp
share/postgresql/pgaccess/lib/help/view_table_structure.hlp
share/postgresql/pgaccess/lib/help/views.hlp
share/postgresql/pgaccess/lib/help/visual_designer.hlp
share/postgresql/pgaccess/lib/help/y2k.hlp
share/postgresql/pgaccess/lib/languages/chinese_big5
share/postgresql/pgaccess/lib/languages/chinese_gb
share/postgresql/pgaccess/lib/languages/czech
share/postgresql/pgaccess/lib/languages/deutsch
share/postgresql/pgaccess/lib/languages/euskara
share/postgresql/pgaccess/lib/languages/francais
share/postgresql/pgaccess/lib/languages/italiano
share/postgresql/pgaccess/lib/languages/japanese
share/postgresql/pgaccess/lib/languages/magyar
share/postgresql/pgaccess/lib/languages/nederlands
share/postgresql/pgaccess/lib/languages/portugues
share/postgresql/pgaccess/lib/languages/romana
share/postgresql/pgaccess/lib/languages/russian.koi8r
share/postgresql/pgaccess/lib/languages/russian_win
share/postgresql/pgaccess/lib/languages/spanish
share/postgresql/pgaccess/lib/mainlib.tcl
share/postgresql/pgaccess/lib/preferences.tcl
share/postgresql/pgaccess/lib/queries.tcl
share/postgresql/pgaccess/lib/reports.tcl
share/postgresql/pgaccess/lib/schema.tcl
share/postgresql/pgaccess/lib/scripts.tcl
share/postgresql/pgaccess/lib/sequences.tcl
share/postgresql/pgaccess/lib/tables.tcl
share/postgresql/pgaccess/lib/users.tcl
share/postgresql/pgaccess/lib/views.tcl
share/postgresql/pgaccess/lib/visualqb.tcl
share/postgresql/pgaccess/main.tcl
@dirrm share/postgresql/pgaccess/lib/languages
@dirrm share/postgresql/pgaccess/lib/help
@dirrm share/postgresql/pgaccess/lib
@dirrm share/postgresql/pgaccess/images
@dirrm share/postgresql/pgaccess