Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1ef5c99

Browse files
committed
Fix 'make clean' with jdbc and ant by using filesets.
1 parente7ffdd4 commit1ef5c99

File tree

4 files changed

+26
-22
lines changed

4 files changed

+26
-22
lines changed

‎contrib/retep/build.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
build file to build the donated retep tools packages
44
5-
$Id: build.xml,v 1.6 2001/05/16 17:09:25 momjian Exp $
5+
$Id: build.xml,v 1.7 2001/05/17 03:22:53 momjian Exp $
66
77
-->
88

@@ -35,8 +35,10 @@
3535

3636
<!-- This target removes any class files from the build directory-->
3737
<targetname="clean">
38-
<deletedir="${dest}" />
39-
<deletedir="${jars}" />
38+
<delete>
39+
<filesetdir="${dest}" />
40+
<filesetdir="${jars}" />
41+
</delete>
4042
</target>
4143

4244
<!-- Builds the XML Tools-->

‎doc/TODO

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ TYPES
6464
* Add IPv6 capability to INET/CIDR types
6565
* Add conversion function from text to inet
6666
* Store binary-compatible type information in the system
67-
* Allow nulls in arrays
68-
* Allow arrays to be ORDER'ed
6967
* Support construction of array result values in expressions
7068
* Remove Money type, add money formatting for decimal type
7169
* Declare typein/out functions in pg_proc with a special "C string" data type
@@ -78,10 +76,14 @@ TYPES
7876
* SELECT cash_out(2) crashes because of opaque
7977
* Add SQL standard function bit_length()
8078
* Make oid use unsigned int more reliably, pg_atoi()
79+
* ARRAYS
80+
* Allow nulls in arrays
81+
* Allow arrays to be ORDER'ed
82+
* fix array handling in ECPG
8183

8284
MULTILANGUAGE SUPPORT
8385

84-
* Addnchar (as distinguished from ordinary varchar),
86+
* AddNCHAR (as distinguished from ordinary varchar),
8587
* Allow LOCALE on a per-column basis, default to ASCII
8688
* Support multiple simultaneous character sets, per SQL92
8789
* Reject character sequences those are not valid in their charset
@@ -112,12 +114,12 @@ INDEXES
112114
* Use indexes for min() and max()
113115
* Use index to restrict rows returned by multi-key index when used with
114116
non-consecutive keys or OR clauses, so fewer heap accesses
115-
* Allow SELECT * FROM tab WHERE int2col = 4 use int2col index, int8,
117+
* Allow SELECT * FROM tab WHERE int2col = 4touse int2col index, int8,
116118
float4, numeric/decimal too [optimizer]
117119
* Use indexes with CIDR '<<' (contains) operator
118120
* Allow LIKE indexing optimization for non-ASCII locales
119121
* Be smarter about insertion of already-ordered data into btree index
120-
* Gather more accurate dispersion statistics using indexes
122+
*-Gather more accurate dispersion statistics using indexes
121123
* Add deleted bit to index tuples to reduce heap access
122124
* Prevent index uniqueness checks when UPDATE does not modifying column
123125

@@ -132,6 +134,14 @@ SYSTEM TABLES
132134

133135
COMMANDS
134136

137+
* Add SIMILAR TO to allow character classes, 'pg_[a-c]%'
138+
* Auto-destroy sequence on DROP of table with SERIAL, perhaps with a separate
139+
SERIAL type
140+
* Allow LOCK TABLE tab1, tab2, tab3 so all tables locked in unison [lock]
141+
* Allow RULE recompilation
142+
* Add BETWEEN ASYMMETRIC/SYMMETRIC
143+
* Change LIMIT val,val to offset,limit to match MySQL
144+
* Allow Pl/PgSQL's RAISE function to take expressions
135145
* ALTER
136146
* ALTER TABLE ADD COLUMN to inherited table put column in wrong place
137147
[inheritance]
@@ -159,12 +169,6 @@ COMMANDS
159169
* Allow INSERT INTO my_table VALUES (a, b, c, DEFAULT, x, y, z, ...)
160170
* Disallow missing columns in INSERT ... VALUES, per ANSI
161171
* Allow INSERT/UPDATE ... RETURNING new.col or old.col (Philip)
162-
* Add SIMILAR TO to allow character classes, 'pg_[a-c]%'
163-
* Auto-destroy sequence on DROP of table with SERIAL, perhaps with a separate
164-
SERIAL type
165-
* Allow LOCK TABLE tab1, tab2, tab3 so all tables locked in unison [lock]
166-
* Allow RULE recompilation
167-
* Add BETWEEN ASYMMETRIC/SYMMETRIC
168172
* SHOW/SET
169173
* Add SHOW command to display locks
170174
* Add a global RESET command for use with connection pooling
@@ -174,14 +178,11 @@ COMMANDS
174178
* Add SET PERFORMANCE_TIPS option to suggest INDEX, VACUUM, VACUUM
175179
ANALYZE, and CLUSTER
176180
* Add SHOW command to see locale
177-
* Change LIMIT val,val to offset,limit to match MySQL
178-
* Allow Pl/PgSQL's RAISE function to take expressions
179181

180182
CLIENTS
181183

182184
* Make NULL's come out at the beginning or end depending on the
183185
ORDER BY direction
184-
* fix array handling in ECPG
185186
* have pg_dump use LEFT OUTER JOIN in multi-table SELECTs
186187
or multiple SELECTS to avoid bad system catalog entries
187188
* allow psql \d to show primary and foreign keys

‎src/interfaces/jdbc/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.29 2001/05/1700:29:52 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.30 2001/05/1703:22:53 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -37,4 +37,3 @@ uninstall:
3737

3838
cleandistcleanmaintainer-clean:
3939
$(ANT) -buildfile$(top_srcdir)/build.xml clean
40-
rm -f org/postgresql/Driver.java

‎src/interfaces/jdbc/build.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
build file to allow ant (http://jakarta.apache.org/ant/) to be used
44
to build the PostgreSQL JDBC Driver.
55
6-
$Id: build.xml,v 1.10 2001/05/16 17:09:26 momjian Exp $
6+
$Id: build.xml,v 1.11 2001/05/17 03:22:53 momjian Exp $
77
88
-->
99

@@ -83,8 +83,10 @@
8383

8484
<!-- This target removes any class files from the build directory-->
8585
<targetname="clean">
86-
<deletedir="${dest}" />
87-
<deletedir="${jars}" />
86+
<delete>
87+
<filesetdir="${dest}" />
88+
<filesetdir="${jars}" />
89+
</delete>
8890
<deletefile="${package}/Driver.java" />
8991
</target>
9092

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp