You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/src/test/regress/sql
Peter Eisentraut 5fe3da927b Revert updatable views 17 years ago
..
abstime.sql
aggregates.sql Apply my original fix for Taiki Yamaguchi's bug report about DISTINCT MAX(). 18 years ago
alter_table.sql Alter regression test cases that rely on the sort order of "aa". Some 17 years ago
arrays.sql Fix recently-added array_agg tests to ensure they produce stable results 17 years ago
bit.sql
bitmapops.sql Replace "amgetmulti" AM functions with "amgetbitmap", in which the whole 18 years ago
boolean.sql Additional test coverage for boolean type (bool.c) 18 years ago
box.sql Rename contains/contained-by operators to @> and <@, per discussion that 20 years ago
btree_index.sql Fix breakage of bitmap scan plan creation for special index operators such 17 years ago
case.sql
char.sql
circle.sql Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LAST 19 years ago
cluster.sql Add an ORDER BY to nail down the expected row order from a query that's 19 years ago
combocid.sql Avoid incrementing the CommandCounter when CommandCounterIncrement is called 18 years ago
comments.sql
conversion.sql Remove "convert 'blah' using conversion_name" facility, because if it 19 years ago
copy2.sql Clean up CREATE FUNCTION syntax usage in contrib and elsewhere, in 20 years ago
copyselect.sql Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow, 18 years ago
create_aggregate.sql Create AVG() aggregates for int8 and NUMERIC which do not compute X^2, 19 years ago
create_cast.sql Add test case for CREATE CAST. 17 years ago
create_index.sql Multi-column GIN indexes. Teodor Sigaev 18 years ago
create_misc.sql
create_operator.sql
create_table.sql Tsearch2 functionality migrates to core. The bulk of this work is by 19 years ago
create_type.sql Flip the default typispreferred setting from true to false. This affects 18 years ago
create_view.sql Allow CREATE OR REPLACE VIEW to add columns to the _end_ of the view. 17 years ago
date.sql Extend the date type to support infinity and -infinity, analogously to 17 years ago
delete.sql Allow an optional alias for the target table to be specified for UPDATE 20 years ago
dependency.sql Create a separate grantable privilege for TRUNCATE, rather than having it be 18 years ago
domain.sql Fix select_common_type() so that it can select a domain type, if all inputs 18 years ago
drop.sql
drop_if_exists.sql DROP IF EXISTS for ROLE/USER/GROUP 20 years ago
enum.sql Support enum data types. Along the way, use macros for the values of 19 years ago
errors.sql
euc_cn.sql
euc_jp.sql
euc_kr.sql
euc_tw.sql
float4.sql Fix float4/8 to handle Infinity and Nan consistently, e.g. Infinity is a 19 years ago
float8.sql Add regression test for various power expressions with a zero base, and 18 years ago
foreign_data.sql Revise the permission checking on user mapping DDL commands. 17 years ago
foreign_key.sql Refactor the handling of the various DropStmt variants so that when multiple 18 years ago
geometry.sql Stop a few regression tests from needlessly disabling GEQO. This was 19 years ago
guc.sql Arrange for SET LOCAL's effects to persist until the end of the current top 19 years ago
hash_index.sql
horology.sql Tighten up to_date/to_timestamp so that they are more likely to reject 18 years ago
inet.sql Fix incorrect addition, subtraction, and overflow checking in new 20 years ago
inherit.sql Change the rules for inherited CHECK constraints to be essentially the same 18 years ago
insert.sql A few regression tests for VALUES, from Gavin Sherry. 20 years ago
int2.sql
int4.sql
int8.sql Remove some unportable tests 18 years ago
interval.sql Clean up the ancient decision to show only two fractional-seconds digits 17 years ago
join.sql Alter regression test cases that rely on the sort order of "aa". Some 17 years ago
limit.sql Fix parameter recalculation for Limit nodes: during a ReScan call we must 19 years ago
lseg.sql
macaddr.sql Add regression test for macaddr type. Enhance documentation about accepted 18 years ago
money.sql Add regression tests for MONEY type. 18 years ago
mule_internal.sql
name.sql
namespace.sql
numeric.sql Re-implement division for numeric values using the traditional "schoolbook" 18 years ago
numeric_big.sql
numerology.sql Improve SELECT DISTINCT to consider hash aggregation, as well as sort/uniq, 18 years ago
oid.sql
oidjoins.sql Update oidjoins test to match CVS HEAD. 17 years ago
opr_sanity.sql Add a new column proiswindow to pg_proc. It doesn't actually do anything 17 years ago
path.sql
plancache.sql Repair bug that allowed RevalidateCachedPlan to attempt to rebuild a cached 18 years ago
plpgsql.sql Implement SQL-spec RETURNS TABLE syntax for functions. 18 years ago
point.sql Stop a few regression tests from needlessly disabling GEQO. This was 19 years ago
polygon.sql Rename contains/contained-by operators to @> and <@, per discussion that 20 years ago
polymorphism.sql Code review for function default parameters patch. Fix numerous problems as 17 years ago
portals.sql Modify UPDATE/DELETE WHERE CURRENT OF to use the FOR UPDATE infrastructure to 17 years ago
portals_p2.sql
prepare.sql Don't refer to the database name "regression" inside the regression test 18 years ago
prepared_xacts.sql Increase the statement_timeout value used in the prepared_xacts regression 18 years ago
privileges.sql Support column-level privileges, as required by SQL standard. 17 years ago
random.sql
rangefuncs.sql Allow SQL-language functions to return the output of an INSERT/UPDATE/DELETE 17 years ago
reltime.sql
returning.sql Apply a simple solution to the problem of making INSERT/UPDATE/DELETE 20 years ago
rowtypes.sql Implement comparison of generic records (composite types), and invent a 17 years ago
rules.sql Alter the regression test cases that rely on the sort order of "ch" between 17 years ago
sanity_check.sql Tweak sanity_check regression test to display more tables (viz, those 20 years ago
select.sql TABLE command 17 years ago
select_distinct.sql Add an ORDER BY to one more SELECT DISTINCT test case, per buildfarm results. 18 years ago
select_distinct_on.sql
select_having.sql
select_implicit.sql Alter regression test cases that rely on the sort order of "aa". Some 17 years ago
select_into.sql
select_views.sql
sequence.sql Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing a 18 years ago
sql_ascii.sql
stats.sql Simplify and rename some GUC variables, per various recent discussions: 19 years ago
strings.sql Unicode escapes in strings and identifiers 17 years ago
subselect.sql Fix mis-calculation of extParam/allParam sets for plan nodes, as seen in 18 years ago
temp.sql Don't refer to the database name "regression" inside the regression test 18 years ago
text.sql Fix up text concatenation so that it accepts all the reasonable cases that 19 years ago
time.sql Please find attached two patches for documentation and regression tests 20 years ago
timestamp.sql Tighten up to_date/to_timestamp so that they are more likely to reject 18 years ago
timestamptz.sql Tighten up to_date/to_timestamp so that they are more likely to reject 18 years ago
timetz.sql Please find attached two patches for documentation and regression tests 20 years ago
tinterval.sql Stop a few regression tests from needlessly disabling GEQO. This was 19 years ago
transactions.sql Insert ORDER BY into a few regression test queries that now have unstable 19 years ago
triggers.sql fix suppress_redundant_updates_trigger() where relation has Oids, per gripe from KaiGai Kohei 17 years ago
truncate.sql Add ONLY support to LOCK and TRUNCATE. By default, these commands are now 17 years ago
tsdicts.sql Rename and slightly redefine the default text search parser's "word" 18 years ago
tsearch.sql Improve headeline generation. Now headline can contain 17 years ago
tstypes.sql Extend GIN to support partial-match searches, and extend tsquery to support 18 years ago
txid.sql Migrate the former contrib/txid module into core. This will make it easier 19 years ago
type_sanity.sql Establish the rule that array types should have the same typdelim as their 18 years ago
union.sql Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries. 18 years ago
update.sql Code review for UPDATE SET (columnlist) patch. Make it handle as much 20 years ago
uuid.sql Rewrite uuid input and output routines to avoid dependency on the 19 years ago
vacuum.sql
varchar.sql
window.sql Add some basic support for window frame clauses to the window-functions 17 years ago
with.sql Add docs and regression test about sorting the output of a recursive query in 17 years ago
without_oid.sql Combine cmin and cmax fields of HeapTupleHeaders into a single field, by 19 years ago
xml.sql Fix crash of xmlconcat(NULL) 17 years ago