1. 17 May, 2008 2 commits
    • Andrew Dunstan's avatar
      Add $PostgreSQL$ markers to a lot of files that were missing them. · 53972b46
      Andrew Dunstan authored
      This particular batch was just for *.c and *.h file.
      
      The changes were made with the following 2 commands:
      
      find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o  \( -name '*.[ch]'  \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | while read file ; do head -n 1 < $file | grep -q '^/\*' && echo $file; done | xargs -l sed -i -e '1s/^\// /' -e '1i/*\n * $PostgreSQL:$ \n *'
      
      find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o  \( -name '*.[ch]'  \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | xargs -l sed -i -e '1i/*\n * $PostgreSQL:$ \n */'
      53972b46
    • Tom Lane's avatar
      Allow ALTER SEQUENCE START WITH to change the recorded start_value of a · caede71b
      Tom Lane authored
      sequence.  This seems an obvious extension to the recent patch, and it
      makes the code noticeably cleaner and more orthogonal.
      caede71b
  2. 16 May, 2008 15 commits
  3. 15 May, 2008 3 commits
  4. 14 May, 2008 6 commits
  5. 13 May, 2008 5 commits
  6. 12 May, 2008 9 commits