1. 14 7月, 1999 1 次提交
  2. 10 7月, 1999 1 次提交
  3. 08 7月, 1999 1 次提交
  4. 04 7月, 1999 1 次提交
  5. 03 7月, 1999 1 次提交
  6. 07 6月, 1999 1 次提交
  7. 22 5月, 1999 2 次提交
  8. 21 5月, 1999 2 次提交
  9. 20 5月, 1999 2 次提交
  10. 17 5月, 1999 3 次提交
  11. 12 5月, 1999 1 次提交
    • T
      Add keywords to implement Vadim's transaction isolation · bcb5aac8
      Thomas G. Lockhart 提交于
       and lock syntax as fully parsed tokens.
      Two keywords for isolation are non-reserved SQL92
       (COMMITTED, SERIALIZABLE).
      All other new keywords are non-reserved Postgres (not SQL92)
       (ACCESS, EXCLUSIVE, MODE, SHARE).
      Add syntax to allow CREATE [GLOBAL|LOCAL] TEMPORARY TABLE, throwing an
       error if GLOBAL is specified.
      bcb5aac8
  12. 11 5月, 1999 1 次提交
  13. 04 5月, 1999 1 次提交
    • B
      here are some patches for 6.5.0 which I already submitted but have never · 210055ad
      Bruce Momjian 提交于
      been applied. The patches are in the .tar.gz attachment at the end:
      
      varchar-array.patch     this patch adds support for arrays of bpchar() and
                              varchar(), which where always missing from postgres.
      
                              These datatypes can be used to replace the _char4,
                              _char8, etc., which were dropped some time ago.
      
      block-size.patch        this patch fixes many errors in the parser and other
                              program which happen with very large query statements
                              (> 8K) when using a page size larger than 8192.
      
                              This patch is needed if you want to submit queries
                              larger than 8K. Postgres supports tuples up to 32K
                              but you can't insert them because you can't submit
                              queries larger than 8K. My patch fixes this problem.
      
                              The patch also replaces all the occurrences of `8192'
                              and `1<<13' in the sources with the proper constants
                              defined in include files. You should now never find
                              8192 hardwired in C code, just to make code clearer.
      
      
      --
      Massimo Dal Zotto
      210055ad
  14. 27 4月, 1999 1 次提交
  15. 20 4月, 1999 1 次提交
  16. 22 3月, 1999 1 次提交
  17. 21 3月, 1999 2 次提交
  18. 20 3月, 1999 1 次提交
  19. 19 3月, 1999 3 次提交
  20. 18 3月, 1999 2 次提交
  21. 16 3月, 1999 1 次提交
  22. 14 3月, 1999 1 次提交
    • B
      I have a problem with Access97 not working properly when entering new · d13fe290
      Bruce Momjian 提交于
      records using a sub form, i.e. entering a new order/orderlines or master
      and
      detail tables.  The problem is caused by a SQL statement that Access97
      makes
      involving NULL.  The syntax that fails is "column_name" = NULL.  The
      following attachment was provided by -Jose'-.  It contains a very small
      enhancement to gram.y that will allow Access97 to work properly with sub
      forms.  Can this enhancement be added to release 6.5?
      
       <<gram.patch>>
      Thanks, Michael
      d13fe290
  23. 07 3月, 1999 1 次提交
  24. 23 2月, 1999 1 次提交
  25. 21 2月, 1999 1 次提交
    • M
      · 8c3e8a8a
      Marc G. Fournier 提交于
      From: Tatsuo Ishii <t-ishii@sra.co.jp>
      
      Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef
      NOT_USED" for current. I have tested these patches in that the
      postgres binaries are identical.
      8c3e8a8a
  26. 14 2月, 1999 1 次提交
  27. 08 2月, 1999 2 次提交
  28. 07 2月, 1999 1 次提交
  29. 03 2月, 1999 1 次提交
    • B
      OK I found it, · eb341553
      Bruce Momjian 提交于
      I search in the planner for the '\xFF' appending.
      Finally I found in MakeIndexable() in gram.y
      
      Attach a patch which removes the "<=" test in USE_LOCALE,
      might make some queries a bit slower for us "locale-heads",
      BUT correct result is more important.
      
              regards,
      --
      -----------------
      Göran Thyni
      eb341553
  30. 02 2月, 1999 1 次提交