Tom Lane
48fd9a2cc2
Add equality checking for T_Query so that we don't get
...
complaints in UNION regress test. Probably still need some more node
types to be handled here, but I'm done for the day...
27 years ago
Tom Lane
3fd3d028fb
Add floating-point support to our emulation of snprintf
...
so that EXPLAIN works again.
27 years ago
Tom Lane
fd1afb7453
Fix silly typo causing SELECT INTO TABLE to sometimes be
...
treated as SELECT INTO TEMP TABLE.
27 years ago
Bruce Momjian
a553760845
Optimizer cleanup.
27 years ago
Jan Wieck
ead64f317b
New alloc set code using a memory block pool for small allocations.
...
Jan
27 years ago
Bruce Momjian
7d2b3874aa
optimizer cleanup
27 years ago
Bruce Momjian
6e2edaf4b8
Optimizer cleanup.
27 years ago
Bruce Momjian
d5db88142c
Fix for returning stack pointer from selectivity, from Bernard Frankpitt.
27 years ago
Bruce Momjian
f962514403
Reverse out const to libpq interface from D'Arcy.
27 years ago
Tom Lane
d3a85108c2
Fix silly typo in prune_joinrel
27 years ago
Bruce Momjian
c45e4925ab
Optimizer cleanups.
27 years ago
Bruce Momjian
ae12e25263
Update optimizer comments.
27 years ago
Bruce Momjian
19cc38b28d
Large object write-into-middle fix from Tatsuo Ishii.
27 years ago
Marc G. Fournier
fc590b6f1a
From: Michael Meskes <Michael.Meskes@usa.net>
...
27 years ago
Bruce Momjian
a03b817373
Const fixes from D'Arcy.
27 years ago
Bruce Momjian
ce3afccf7f
More optimizer cleanups.
27 years ago
Bruce Momjian
18fbe4142f
More optimizer renaming HInfo -> HashInfo.
27 years ago
Bruce Momjian
9322950aa4
Cleanup of source files where 'return' or 'var =' is alone on a line.
27 years ago
Bruce Momjian
3982368a4e
The libpq function PQfnumber does not handle case-insensitive
...
comparisons correctly. The psql monitor converts all table and field
names to lower case. If the PQfnumber function is called with a mixed
case name, it will always return -1.
Bahman Rafatjoo
27 years ago
Bruce Momjian
8d9237d485
Optimizer rename ClauseInfo -> RestrictInfo. Update optimizer README.
27 years ago
Jan Wieck
f3a6b38e32
Sort node for ORDER BY is suppressed if choosen index scan will
...
allways present tuples in the requested order.
Jan
27 years ago
Tom Lane
724119a979
Modify int8 to not depend on sscanf(), and fix configure's test
...
for int8 support. configure now checks only snprintf() for int8 support,
not sprintf and sscanf as it used to. The reason for doing this is that
if we are supplying our own snprintf code (which does handle long long int),
we now only need working long long support in the compiler not in the
platform's C library. I have verified that int8 now passes regression test
on HPUX 9, and I think it should work on SunOS 4.1.* and other older
platforms if gcc is used.
27 years ago
Bruce Momjian
4090d17fee
SET_ARGS cleanup
27 years ago
Bruce Momjian
f1b7823471
Make GEQO use dependent on table and index count.
27 years ago
Bruce Momjian
eb3415538e
OK I found it,
...
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
27 years ago
Bruce Momjian
2163d9e33e
Add missing mb files.
27 years ago
Bruce Momjian
a7ad43cd18
Included patches make some enhancements to the multi-byte support.
...
o allow to use Big5 (a Chinese encoding used in Taiwan) as a client
encoding. In this case the server side encoding should be EUC_TW
o add EUC_TW and Big5 test cases to the regression and the mb test
(contributed by Jonah Kuo)
o fix mistake in include/mb/pg_wchar.h. An encoding id for EUC_TW was
not correct (was 3 and now is 4)
o update documents (doc/README.mb and README.mb.jp)
o update psql helpfile (bin/psql/psqlHelp.h)
--
Tatsuo Ishii
t-ishii@sra.co.jp
27 years ago
Bruce Momjian
8358a8f6a0
psql help fix.
27 years ago
Bruce Momjian
1b907ab8f5
Fix for psql help create table.
27 years ago
Bruce Momjian
8e958b8a38
Fix create_rule is->as.
27 years ago
Jan Wieck
7ab88a16a1
Fixed failed assertion happening in multiple action rules
...
when parsestate in makeRangeTable() already contains an
opened p_target_relation.
Jan
27 years ago
Bruce Momjian
4390b0bfbe
Add TEMP tables/indexes. Add COPY pfree(). Other cleanups.
27 years ago
Jan Wieck
7fc75517df
Fixed growing of backend due to not pfree()'d data on COPY FROM
...
Fixed growing of backend if BEFORE DELETE trigger returns heap tuple
different from trigtuple.
Jan
27 years ago
Vadim B. Mikheev
072be47202
Initialize es_snapshot.
27 years ago
Tom Lane
757f403451
Tighten coding in samekeys(). Pretty braindead change,
...
but it saves almost 10% of the runtime in Charles Hornberger's optimizer
example, so what the heck ...
27 years ago
Marc G. Fournier
6ca2bf6534
freebsd4.0 needed to be added to configure...
27 years ago
Marc G. Fournier
91fed81c77
From: Michael Meskes <Michael.Meskes@usa.net>
...
27 years ago
Marc G. Fournier
f7c4ec5085
From: D'Arcy J.M. Cain <darcy@druid.net>
...
27 years ago
Tom Lane
36c1895533
Fix postmaster to not try to start more than MaxBackendId children,
...
per patch from Tatsuo Ishii
27 years ago
Vadim B. Mikheev
bfa6d510b3
Small fix for READ COMMITTED isolevel.
27 years ago
Vadim B. Mikheev
aaef7beb79
Hope that execMain.c good merged.
...
Fix for BEFORE ROW UPDATE triggers: result tuple may be different
(due to concurrent update) from one initially produced by top level plan.
27 years ago
Vadim B. Mikheev
1d41e88568
Trying to fix bad merging...
27 years ago
Vadim B. Mikheev
e3a1ab764e
READ COMMITTED isolevel is implemented and is default now.
27 years ago
Jan Wieck
3e2f87f3f3
Changed qualification of pg_views and pg_tables to directly
...
check if a rewrite rule on SELECT exists/not exists instead
of asking pg_get_viewdef() function.
Jan
27 years ago
Jan Wieck
51e8a1d390
New prebuilt versions of gram.c and scan.c for the mixed case
...
identifier support.
Jan
27 years ago
Jan Wieck
c42b959fb3
Partial support for mixed case in PL/pgSQL.
...
Left are identifiers that contain non-alnum/_ chars.
So e.g. whitespaces in identifiers are still not
supported.
Jan
27 years ago
Tom Lane
b946244c1c
Quick fix for subplan-related crash.
27 years ago
Jan Wieck
28d8b42ca5
Speedup of PL/pgSQL by calling ExecEvalExpr() directly
...
instead of SPI_execp() for simple expressions.
Jan
27 years ago
Bruce Momjian
d611ccb874
fix for aggregates
27 years ago
Marc G. Fournier
2ae5d51668
From: Tatsuo Ishii <t-ishii@sra.co.jp>
...
27 years ago