Test ALIGNOF_DOUBLE==4 compatibility under ALIGNOF_DOUBLE==8.
authorNoah Misch <noah@leadboat.com>
Sat, 23 Apr 2022 03:20:11 +0000 (20:20 -0700)
committerNoah Misch <noah@leadboat.com>
Sat, 23 Apr 2022 03:20:11 +0000 (20:20 -0700)
Today's test case detected alignment problems only when executing on
AIX.  This change lets popular platforms detect the same problems.

Reviewed by Masahiko Sawada.

Discussion: https://postgr.es/m/20220415072601.GG862547@rfd.leadboat.com

src/test/regress/expected/sanity_check.out
src/test/regress/expected/test_setup.out
src/test/regress/regress.c
src/test/regress/sql/sanity_check.sql
src/test/regress/sql/test_setup.sql

index a2faefb4c02b27f00893822892d4d2ac4cc87ea3..c5c675b75089a1e400a1f44d8a90fca06a4c4344 100644 (file)
@@ -39,18 +39,18 @@ WITH check_columns AS (
    SELECT t.oid
     FROM pg_type t JOIN pg_attribute pa ON t.oid = pa.atttypid
     WHERE pa.attrelid = a.attrelid AND
-          pa.attnum > 0 AND pa.attnum <= a.attnum
+          pa.attnum > 0 AND pa.attnum < a.attnum
     ORDER BY pa.attnum) AS coltypes
  FROM pg_attribute a JOIN pg_class c ON c.oid = attrelid
   JOIN pg_namespace n ON c.relnamespace = n.oid
  WHERE attalign = 'd' AND relkind = 'r' AND
   attnotnull AND attlen <> -1 AND n.nspname = 'pg_catalog'
 )
-SELECT relname, attname, coltypes, get_column_offset(coltypes)
+SELECT relname, attname, coltypes, get_columns_length(coltypes)
  FROM check_columns
- WHERE get_column_offset(coltypes) % 8 != 0 OR
+ WHERE get_columns_length(coltypes) % 8 != 0 OR
        'name'::regtype::oid = ANY(coltypes);
- relname | attname | coltypes | get_column_offset 
----------+---------+----------+-------------------
+ relname | attname | coltypes | get_columns_length 
+---------+---------+----------+--------------------
 (0 rows)
 
index 8b8ba7d778b4b45e33cb5dec89e47e61739efbaa..391b36d1318fa7d2e7c3ed02641bd1da19bd4a36 100644 (file)
@@ -206,7 +206,7 @@ CREATE FUNCTION ttdummy ()
     RETURNS trigger
     AS :'regresslib'
     LANGUAGE C;
-CREATE FUNCTION get_column_offset (oid[])
+CREATE FUNCTION get_columns_length(oid[])
     RETURNS int
     AS :'regresslib'
     LANGUAGE C STRICT STABLE PARALLEL SAFE;
index 8b0c2d9d68401b07286b6ba5a0f5d81ef9535049..ade4b51fb8dec782a9f1703c6a4439810225087b 100644 (file)
@@ -1219,12 +1219,12 @@ binary_coercible(PG_FUNCTION_ARGS)
 }
 
 /*
- * Return the column offset of the last data in the given array of
- * data types.  The input data types must be fixed-length data types.
+ * Return the length of the portion of a tuple consisting of the given array
+ * of data types.  The input data types must be fixed-length data types.
  */
-PG_FUNCTION_INFO_V1(get_column_offset);
+PG_FUNCTION_INFO_V1(get_columns_length);
 Datum
-get_column_offset(PG_FUNCTION_ARGS)
+get_columns_length(PG_FUNCTION_ARGS)
 {
    ArrayType   *ta = PG_GETARG_ARRAYTYPE_P(0);
    Oid         *type_oids;
@@ -1249,14 +1249,10 @@ get_column_offset(PG_FUNCTION_ARGS)
        get_typlenbyvalalign(typeoid, &typlen, &typbyval, &typalign);
 
        /* the data type must be fixed-length */
-       if (!(typbyval || (typlen > 0)))
+       if (typlen < 0)
            elog(ERROR, "type %u is not fixed-length data type", typeoid);
 
-       column_offset = att_align_nominal(column_offset, typalign);
-
-       /* not include the last type size */
-       if (i != (ntypes - 1))
-           column_offset += typlen;
+       column_offset = att_align_nominal(column_offset + typlen, typalign);
    }
 
    PG_RETURN_INT32(column_offset);
index c70ff781fafe9a0e316609ccf9e4576208ec740e..7f338d191c677bb86acf81fe06aefe482ee19332 100644 (file)
@@ -34,14 +34,14 @@ WITH check_columns AS (
    SELECT t.oid
     FROM pg_type t JOIN pg_attribute pa ON t.oid = pa.atttypid
     WHERE pa.attrelid = a.attrelid AND
-          pa.attnum > 0 AND pa.attnum <= a.attnum
+          pa.attnum > 0 AND pa.attnum < a.attnum
     ORDER BY pa.attnum) AS coltypes
  FROM pg_attribute a JOIN pg_class c ON c.oid = attrelid
   JOIN pg_namespace n ON c.relnamespace = n.oid
  WHERE attalign = 'd' AND relkind = 'r' AND
   attnotnull AND attlen <> -1 AND n.nspname = 'pg_catalog'
 )
-SELECT relname, attname, coltypes, get_column_offset(coltypes)
+SELECT relname, attname, coltypes, get_columns_length(coltypes)
  FROM check_columns
- WHERE get_column_offset(coltypes) % 8 != 0 OR
+ WHERE get_columns_length(coltypes) % 8 != 0 OR
        'name'::regtype::oid = ANY(coltypes);
index fbceb8cb464b035f7706e9de8649cc71a01352ba..02c0c84c3ad831d62a2cfb16870d35ddf7aa9a99 100644 (file)
@@ -253,7 +253,7 @@ CREATE FUNCTION ttdummy ()
     AS :'regresslib'
     LANGUAGE C;
 
-CREATE FUNCTION get_column_offset (oid[])
+CREATE FUNCTION get_columns_length(oid[])
     RETURNS int
     AS :'regresslib'
     LANGUAGE C STRICT STABLE PARALLEL SAFE;