1. 12 10月, 2000 2 次提交
  2. 08 10月, 2000 1 次提交
  3. 07 9月, 2000 1 次提交
  4. 28 8月, 2000 1 次提交
  5. 25 8月, 2000 1 次提交
  6. 12 8月, 2000 1 次提交
  7. 14 7月, 2000 1 次提交
    • T
      Implement nested block comments in the backend and in psql. · be703cd9
      Thomas G. Lockhart 提交于
       Include updates for the comment.sql regression test.
      Implement SET SESSION CHARACTERISTICS and SET DefaultXactIsoLevel.
      Implement SET SESSION CHARACTERISTICS TRANSACTION COMMIT
       and SET AutoCommit in the parser only.
       Need to add code to actually do something.
      Implement WITHOUT TIME ZONE type qualifier.
      Define SCHEMA keyword, along with stubbed-out grammar.
      Implement "[IN|INOUT|OUT] [varname] type" function arguments
       in parser only; INOUT and OUT throws an elog(ERROR).
      Add PATH as a type-specific token, since PATH is in SQL99
       to support schema resource search and resolution.
      be703cd9
  8. 13 7月, 2000 1 次提交
  9. 04 7月, 2000 1 次提交
  10. 23 6月, 2000 1 次提交
    • P
      Second pass over run-time configuration system. Adjust priorities on some · c4465095
      Peter Eisentraut 提交于
      option settings. Sort out SIGHUP vs BACKEND -- there is no total ordering
      here, so make explicit checks. Add comments explaining all of this.
      Removed permissions check on SHOW command.
      
      Add examine_subclass to the game, rename to SQL_inheritance to fit the
      official data model better. Adjust documentation.
      
      Standalone backend needs to reset all options before it starts. To
      facilitate that, have IsUnderPostmaster be set by the postmaster itself,
      don't wait for the magic -p switch.
      
      Also make sure that all environment variables and argv's survive
      init_ps_display(). Use strdup where necessary.
      
      Have initdb make configuration files (postgresql.conf, pg_hba.conf) mode
      0600 -- having configuration files is no fun if you can't edit them.
      c4465095
  11. 15 6月, 2000 1 次提交
  12. 04 6月, 2000 1 次提交
  13. 31 5月, 2000 1 次提交
    • P
      The heralded `Grand Unified Configuration scheme' (GUC) · 6a68f426
      Peter Eisentraut 提交于
      That means you can now set your options in either or all of $PGDATA/configuration,
      some postmaster option (--enable-fsync=off), or set a SET command. The list of
      options is in backend/utils/misc/guc.c, documentation will be written post haste.
      
      pg_options is gone, so is that pq_geqo config file. Also removed were backend -K,
      -Q, and -T options (no longer applicable, although -d0 does the same as -Q).
      
      Added to configure an --enable-syslog option.
      
      changed all callers from TPRINTF to elog(DEBUG)
      6a68f426