1. 30 9月, 2003 17 次提交
    • B
      Update HISTORY for 7.4. · 8dd05737
      Bruce Momjian 提交于
      Neil Conway
      8dd05737
    • B
      Add: · fb72fc8b
      Bruce Momjian 提交于
      > 	o Fixed PL/Tcl's spi_prepare to accept full qualified type names in
      > 	  the parameter type list
      fb72fc8b
    • J
      Fixed type lookup in spi_prepare for possible qualified · 36f15dde
      Jan Wieck 提交于
      type name specification.
      
      Jan
      36f15dde
    • B
      The brackets aren't put on the CHECK constraints properly. · 2f98ece4
      Bruce Momjian 提交于
      Before patch:
      
      test=# select pg_get_constraintdef(oid) from pg_constraint;
                                             pg_get_constraintdef
      -------------------------------------------------------------------------------------------------
        CHECK (VALUE >= 0)
        CHECK ((((a)::text = 'asdf'::text) OR ((a)::text = 'fdsa'::text)) OR
      ((a)::text = 'dfd'::text))
        PRIMARY KEY (b)
        FOREIGN KEY (a) REFERENCES test2(b)
        UNIQUE (b)
      (5 rows)
      
      test=# select pg_get_constraintdef(oid, true) from pg_constraint;
                                      pg_get_constraintdef
      -----------------------------------------------------------------------------------
        CHECK VALUE >= 0
        CHECK a::text = 'asdf'::text OR a::text = 'fdsa'::text OR a::text =
      'dfd'::text
        PRIMARY KEY (b)
        FOREIGN KEY (a) REFERENCES test2(b)
        UNIQUE (b)
      (5 rows)
      
      After patch:
      
      test=# select pg_get_constraintdef(oid) from pg_constraint;
                                             pg_get_constraintdef
      -------------------------------------------------------------------------------------------------
        CHECK (VALUE >= 0)
        CHECK ((((a)::text = 'asdf'::text) OR ((a)::text = 'fdsa'::text)) OR
      ((a)::text = 'dfd'::text))
        PRIMARY KEY (b)
        FOREIGN KEY (a) REFERENCES test2(b)
        UNIQUE (b)
      (5 rows)
      
      test=# select pg_get_constraintdef(oid, true) from pg_constraint;
                                      pg_get_constraintdef
      -----------------------------------------------------------------------------------
        CHECK (VALUE >= 0)
      
      `  CHECK (a::text = 'asdf'::text OR a::text = 'fdsa'::text OR a::text =
      'dfd'::text)
        PRIMARY KEY (b)
        FOREIGN KEY (a) REFERENCES test2(b)
        UNIQUE (b)
      (5 rows)
      
      It's important that those brackets are there to (a) match all other
      constraints and (b) so that people can just copy and paste them and it
      will work as SQL.
      
      
      Christopher Kings-Lynne
      2f98ece4
    • B
      I've not changed any malloc/calloc to palloc. It looks to me that these memory · 6000e328
      Bruce Momjian 提交于
      areas are for the lifetime of the backend and in the interests of not breaking
      something that's not broken I left alone.
      
      Note for anyone reading this and wanting it for tsearch-v2-stable (i.e. for 7.3
      backend) this patch probably will not apply cleanly to that source. It should
      be simple enough to see what's going on and apply the changes by hand if need
      be.
      
      
      --
      Nigel J. Andrews
      6000e328
    • B
      This patch fixes an obvious bug in the "should I print the duration of · 4b4c43b1
      Bruce Momjian 提交于
      this query?" logic in postgres.c
      
      Also, make it print "duration:" like log_duration.
      
      Neil Conway
      4b4c43b1
    • B
      I discovered that TupleDescGetAttInMetadata and BuildTupleFromCStrings · fc7a2aff
      Bruce Momjian 提交于
      don't deal well with tuples having dropped columns. The attached fixes
      the issue. Please apply.
      
      Joe Conway
      fc7a2aff
    • B
      > > · f3db6065
      Bruce Momjian 提交于
      > >  a) Write documentation how the win32 console needs to be set up so that
      > >     psql can handle 8-bit characters.
      > >     Where should it be added? The Section "Installation on Windows" in the
      > >     Administrator's Guide seems natural to me.
      > >
      > >  b) Add code to psql that prints a warning on startup of psql when the
      > >     console codepage differs from the windows codepage, something like
      > >
      > >     Warning: Console codepage (850) differs from windows codepage (1252)
      > >              8-bit characters will not work correctly. See PostgreSQL
      > >              documentation "Installation on Windows" for details.
      >
      Attached are two patches:
      
       - installdoc.patch contains an additional paragraph on the win32 console
         codepage for the chapter "Installation on Windows"
         Due to a lack of SGML-tools, I have only edited the text and not tested
         the SGML code - please check it before merging into the CVS branch.
      
       - psqlcodepage.patch adds the warning about a problematic codepage to psql.
      
      
      Christoph Dalitz
      f3db6065
    • B
      This patch makes a few incremental improvements to geqo.sgml and · a17b5375
      Bruce Momjian 提交于
      arch-dev.sgml
      
      Neil Conway
      a17b5375
    • B
      A) Fixes a bug that prevented mirroring of data on a table that has had · 04e401f9
      Bruce Momjian 提交于
      a column dropped.
      
      B) Updated the documentation for the 7.4 release.
      
      Steven Singer
      04e401f9
    • B
      Change 7.3.4 release note format to match the rest of the 7.3.x · b8d7e1e7
      Bruce Momjian 提交于
      releases.
      
      Rod Taylor
      b8d7e1e7
    • B
      Update release notes. · e22c8913
      Bruce Momjian 提交于
      e22c8913
    • B
      Add: · e7a9ba48
      Bruce Momjian 提交于
      > * Have SHOW ALL and pg_settings show descriptions for server-side variables(Joe)
      e7a9ba48
    • P
      Adjust the new Norwegian translation for some of the easier message · 55fbc98b
      Peter Eisentraut 提交于
      changes between 7.3 and 7.4, for example quoting and function names.
      55fbc98b
    • P
      Apparently, gettext doesn't like double parentheses around argument. What · 275c909a
      Peter Eisentraut 提交于
      were they doing here anyway?
      275c909a
    • P
      Make message fit guidelines. · f4d5d620
      Peter Eisentraut 提交于
      f4d5d620
    • P
      2d480b92
  2. 29 9月, 2003 10 次提交
  3. 28 9月, 2003 13 次提交