Opened log file 'c:/cirrus/crashlog-postgres.exe_1538_2024-10-27_05-06-49-279.txt' 1601: { 1602: FunctionCallInfo fcinfo = op->d.hashdatum.fcinfo_data; 1603: uint32 existinghash; 1604: > 1605: existinghash = DatumGetUInt32(op->d.hashdatum.iresult->value); 1606: /* combine successive hash values by rotating */ 1607: existinghash = pg_rotate_left32(existinghash, 1); 1608: 1609: /* leave the hash value alone on NULL inputs */ 1610: if (!fcinfo->args[0].isnull) . 0 Id: 1be8.1878 Suspend: 1 Teb: 000000fa`e1729000 Unfrozen Child-SP RetAddr Call Site 000000fa`e1bfdcb0 00007ff6`401fbeeb postgres!ExecInterpExpr( struct ExprState * state = 0x00000290`f5682f90, struct ExprContext * econtext = 0x00000290`f53cad78, bool * isnull = 0x000000fa`e1bfdff0)+0x221e [c:\cirrus\src\backend\executor\execExprInterp.c @ 1605] 000000fa`e1bfdf70 00007ff6`40209c1a postgres!ExecInterpExprStillValid( struct ExprState * state = 0x00000290`f5682f90, struct ExprContext * econtext = 0x00000290`f53cad78, bool * isNull = 0x000000fa`e1bfdff0)+0x4b [c:\cirrus\src\backend\executor\execExprInterp.c @ 2036] 000000fa`e1bfdfa0 00007ff6`40209ed6 postgres!ExecEvalExpr( struct ExprState * state = 0x00000290`f5682f90, struct ExprContext * econtext = 0x00000290`f53cad78, bool * isNull = 0x000000fa`e1bfdff0)+0x2a [c:\cirrus\src\include\executor\executor.h @ 357] 000000fa`e1bfdfd0 00007ff6`4020996c postgres!TupleHashTableHash_internal( struct tuplehash_hash * tb = 0x00000290`f5681200, struct MinimalTupleData * tuple = 0x00000000`00000000)+0x56 [c:\cirrus\src\backend\executor\execGrouping.c @ 446] 000000fa`e1bfe020 00007ff6`4023349a postgres!LookupTupleHashEntry( struct TupleHashTableData * hashtable = 0x00000290`f5681170, struct TupleTableSlot * slot = 0x00000290`f5689a88, bool * isnew = 0x000000fa`e1bfe0a0, unsigned int * hash = 0x000000fa`e1bfe0b0)+0x6c [c:\cirrus\src\backend\executor\execGrouping.c @ 329] 000000fa`e1bfe070 00007ff6`40233edb postgres!lookup_hash_entries( struct AggState * aggstate = 0x00000290`f5670340)+0x11a [c:\cirrus\src\backend\executor\nodeAgg.c @ 2119] 000000fa`e1bfe110 00007ff6`40236e36 postgres!agg_fill_hash_table( struct AggState * aggstate = 0x00000290`f5670340)+0x5b [c:\cirrus\src\backend\executor\nodeAgg.c @ 2562] 000000fa`e1bfe150 00007ff6`4021bb7b postgres!ExecAgg( struct PlanState * pstate = 0x00000290`f5670340)+0xc6 [c:\cirrus\src\backend\executor\nodeAgg.c @ 2175] 000000fa`e1bfe1a0 00007ff6`4021195c postgres!ExecProcNodeFirst( struct PlanState * node = 0x00000290`f5670340)+0x4b [c:\cirrus\src\backend\executor\execProcnode.c @ 470] 000000fa`e1bfe1d0 00007ff6`40212a50 postgres!ExecProcNode( struct PlanState * node = 0x00000290`f5670340)+0x2c [c:\cirrus\src\include\executor\executor.h @ 279] 000000fa`e1bfe200 00007ff6`4020dd67 postgres!ExecutePlan( struct EState * estate = 0x00000290`f56700f0, struct PlanState * planstate = 0x00000290`f5670340, bool use_parallel_mode = false, CmdType operation = CMD_SELECT (0n1), bool sendTuples = true, unsigned int64 numberTuples = 0, ScanDirection direction = ForwardScanDirection (0n1), struct _DestReceiver * dest = 0x00000290`f5685ea8, bool execute_once = true)+0x90 [c:\cirrus\src\backend\executor\execMain.c @ 1650] 000000fa`e1bfe240 00007ff6`4020da76 postgres!standard_ExecutorRun( struct QueryDesc * queryDesc = 0x00000290`f5680968, ScanDirection direction = ForwardScanDirection (0n1), unsigned int64 count = 0, bool execute_once = true)+0x2d7 [c:\cirrus\src\backend\executor\execMain.c @ 376] 000000fa`e1bfe2e0 00007ff6`4016222e postgres!ExecutorRun( struct QueryDesc * queryDesc = 0x00000290`f5680968, ScanDirection direction = ForwardScanDirection (0n1), unsigned int64 count = 0, bool execute_once = true)+0x56 [c:\cirrus\src\backend\executor\execMain.c @ 303] 000000fa`e1bfe310 00007ff6`40161bb0 postgres!refresh_matview_datafill( struct _DestReceiver * dest = 0x00000290`f5685ea8, struct Query * query = 0x00000290`f56795d8, char * queryString = 0x00000290`f531ccd0 ". CREATE TABLE orders (date date, item text, num int);. INSERT INTO orders VALUES ('2022-04-01', 'apple', 10), ('2022-04-01', 'banana', 20);.. CREATE MATERIALIZED VIEW order_summary AS. SELECT date, item, sum(num) FROM orders GROUP BY date, item;. CREATE UNIQUE INDEX ON order_summary(date, item);. -- Create a diff between the summary table and the parent orders.. INSERT INTO orders VALUES ('2022-04-02', 'apple', 20);.", bool is_create = true)+0x1ce [c:\cirrus\src\backend\commands\matview.c @ 451] 000000fa`e1bfe3a0 00007ff6`401215c2 postgres!RefreshMatViewByOid( unsigned int matviewOid = 0x9201, bool is_create = true, bool skipData = false, bool concurrent = false, char * queryString = 0x00000290`f531ccd0 ". CREATE TABLE orders (date date, item text, num int);. INSERT INTO orders VALUES ('2022-04-01', 'apple', 10), ('2022-04-01', 'banana', 20);.. CREATE MATERIALIZED VIEW order_summary AS. SELECT date, item, sum(num) FROM orders GROUP BY date, item;. CREATE UNIQUE INDEX ON order_summary(date, item);. -- Create a diff between the summary table and the parent orders.. INSERT INTO orders VALUES ('2022-04-02', 'apple', 20);.", struct QueryCompletion * qc = 0x000000fa`e1bff5b8)+0x770 [c:\cirrus\src\backend\commands\matview.c @ 330] 000000fa`e1bfe5f0 00007ff6`404ff5b7 postgres!ExecCreateTableAs( struct ParseState * pstate = 0x00000290`f4ab9a00, struct CreateTableAsStmt * stmt = 0x00000290`f531eba8, struct ParamListInfoData * params = 0x00000000`00000000, struct QueryEnvironment * queryEnv = 0x00000000`00000000, struct QueryCompletion * qc = 0x000000fa`e1bff5b8)+0x2b2 [c:\cirrus\src\backend\commands\createas.c @ 289] 000000fa`e1bfe6e0 00007ff6`404fb27f postgres!ProcessUtilitySlow( struct ParseState * pstate = 0x00000290`f4ab9a00, struct PlannedStmt * pstmt = 0x00000290`f5327720, char * queryString = 0x00000290`f531ccd0 ". CREATE TABLE orders (date date, item text, num int);. INSERT INTO orders VALUES ('2022-04-01', 'apple', 10), ('2022-04-01', 'banana', 20);.. CREATE MATERIALIZED VIEW order_summary AS. SELECT date, item, sum(num) FROM orders GROUP BY date, item;. CREATE UNIQUE INDEX ON order_summary(date, item);. -- Create a diff between the summary table and the parent orders.. INSERT INTO orders VALUES ('2022-04-02', 'apple', 20);.", ProcessUtilityContext context = PROCESS_UTILITY_TOPLEVEL (0n0), struct ParamListInfoData * params = 0x00000000`00000000, struct QueryEnvironment * queryEnv = 0x00000000`00000000, struct _DestReceiver * dest = 0x00000290`f53d2468, struct QueryCompletion * qc = 0x000000fa`e1bff5b8)+0x1867 [c:\cirrus\src\backend\tcop\utility.c @ 1675] 000000fa`e1bff000 00007ff6`404fa1c9 postgres!standard_ProcessUtility( struct PlannedStmt * pstmt = 0x00000290`f5327720, char * queryString = 0x00000290`f531ccd0 ". CREATE TABLE orders (date date, item text, num int);. INSERT INTO orders VALUES ('2022-04-01', 'apple', 10), ('2022-04-01', 'banana', 20);.. CREATE MATERIALIZED VIEW order_summary AS. SELECT date, item, sum(num) FROM orders GROUP BY date, item;. CREATE UNIQUE INDEX ON order_summary(date, item);. -- Create a diff between the summary table and the parent orders.. INSERT INTO orders VALUES ('2022-04-02', 'apple', 20);.", bool readOnlyTree = false, ProcessUtilityContext context = PROCESS_UTILITY_TOPLEVEL (0n0), struct ParamListInfoData * params = 0x00000000`00000000, struct QueryEnvironment * queryEnv = 0x00000000`00000000, struct _DestReceiver * dest = 0x00000290`f53d2468, struct QueryCompletion * qc = 0x000000fa`e1bff5b8)+0x109f [c:\cirrus\src\backend\tcop\utility.c @ 1073] 000000fa`e1bff1d0 00007ff6`404f91ad postgres!ProcessUtility( struct PlannedStmt * pstmt = 0x00000290`f5327720, char * queryString = 0x00000290`f531ccd0 ". CREATE TABLE orders (date date, item text, num int);. INSERT INTO orders VALUES ('2022-04-01', 'apple', 10), ('2022-04-01', 'banana', 20);.. CREATE MATERIALIZED VIEW order_summary AS. SELECT date, item, sum(num) FROM orders GROUP BY date, item;. CREATE UNIQUE INDEX ON order_summary(date, item);. -- Create a diff between the summary table and the parent orders.. INSERT INTO orders VALUES ('2022-04-02', 'apple', 20);.", bool readOnlyTree = false, ProcessUtilityContext context = PROCESS_UTILITY_TOPLEVEL (0n0), struct ParamListInfoData * params = 0x00000000`00000000, struct QueryEnvironment * queryEnv = 0x00000000`00000000, struct _DestReceiver * dest = 0x00000290`f53d2468, struct QueryCompletion * qc = 0x000000fa`e1bff5b8)+0x169 [c:\cirrus\src\backend\tcop\utility.c @ 526] 000000fa`e1bff220 00007ff6`404f94ff postgres!PortalRunUtility( struct PortalData * portal = 0x00000290`f4a89d60, struct PlannedStmt * pstmt = 0x00000290`f5327720, bool isTopLevel = true, bool setHoldSnapshot = false, struct _DestReceiver * dest = 0x00000290`f53d2468, struct QueryCompletion * qc = 0x000000fa`e1bff5b8)+0x13d [c:\cirrus\src\backend\tcop\pquery.c @ 1168] 000000fa`e1bff290 00007ff6`404f8074 postgres!PortalRunMulti( struct PortalData * portal = 0x00000290`f4a89d60, bool isTopLevel = true, bool setHoldSnapshot = false, struct _DestReceiver * dest = 0x00000290`f53d2468, struct _DestReceiver * altdest = 0x00000290`f53d2468, struct QueryCompletion * qc = 0x000000fa`e1bff5b8)+0x2cf [c:\cirrus\src\backend\tcop\pquery.c @ 1318] 000000fa`e1bff310 00007ff6`404f43bf postgres!PortalRun( struct PortalData * portal = 0x00000290`f4a89d60, long count = 0n2147483647, bool isTopLevel = true, bool run_once = true, struct _DestReceiver * dest = 0x00000290`f53d2468, struct _DestReceiver * altdest = 0x00000290`f53d2468, struct QueryCompletion * qc = 0x000000fa`e1bff5b8)+0x364 [c:\cirrus\src\backend\tcop\pquery.c @ 795] 000000fa`e1bff4c0 00007ff6`404f1bf9 postgres!exec_simple_query( char * query_string = 0x00000290`f531ccd0 ". CREATE TABLE orders (date date, item text, num int);. INSERT INTO orders VALUES ('2022-04-01', 'apple', 10), ('2022-04-01', 'banana', 20);.. CREATE MATERIALIZED VIEW order_summary AS. SELECT date, item, sum(num) FROM orders GROUP BY date, item;. CREATE UNIQUE INDEX ON order_summary(date, item);. -- Create a diff between the summary table and the parent orders.. INSERT INTO orders VALUES ('2022-04-02', 'apple', 20);.")+0x5ff [c:\cirrus\src\backend\tcop\postgres.c @ 1292] 000000fa`e1bff600 00007ff6`404ebb2d postgres!PostgresMain( char * dbname = 0x00000290`f49f7f80 "isolation_regression", char * username = 0x00000290`f4a3d040 "SYSTEM")+0x8e9 [c:\cirrus\src\backend\tcop\postgres.c @ 4797] 000000fa`e1bff810 00007ff6`403ec197 postgres!BackendMain( char * startup_data = 0x00000290`f49f60b0 "", unsigned int64 startup_data_len = 4)+0x11d [c:\cirrus\src\backend\tcop\backend_startup.c @ 108] 000000fa`e1bff850 00007ff6`402ab3f4 postgres!SubPostmasterMain( int argc = 0n3, char ** argv = 0x00000290`f49d92f0)+0x2a7 [c:\cirrus\src\backend\postmaster\launch_backend.c @ 677] 000000fa`e1bff8c0 00007ff6`4089d759 postgres!main( int argc = 0n3, char ** argv = 0x00000290`f49d92f0)+0x2f4 [c:\cirrus\src\backend\main\main.c @ 189] 000000fa`e1bff900 00007ff6`4089d6ae postgres!invoke_main(void)+0x39 [D:\a\_work\1\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl @ 79] 000000fa`e1bff950 00007ff6`4089d56e postgres!__scrt_common_main_seh(void)+0x12e [D:\a\_work\1\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl @ 288] 000000fa`e1bff9c0 00007ff6`4089d7ce postgres!__scrt_common_main(void)+0xe [D:\a\_work\1\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl @ 331] 000000fa`e1bff9f0 00007ffc`69aa4cb0 postgres!mainCRTStartup( void * __formal = 0x000000fa`e1728000)+0xe [D:\a\_work\1\s\src\vctools\crt\vcstartup\src\startup\exe_main.cpp @ 17] 000000fa`e1bffa20 00007ffc`6a17ecdb KERNEL32!BaseThreadInitThunk+0x10 000000fa`e1bffa50 00000000`00000000 ntdll!RtlUserThreadStart+0x2b 1 Id: 1be8.151c Suspend: 1 Teb: 000000fa`e172b000 Unfrozen Child-SP RetAddr Call Site 000000fa`e1fff8e8 00007ffc`6a10b77f ntdll!NtWaitForWorkViaWorkerFactory+0x14 000000fa`e1fff8f0 00007ffc`69aa4cb0 ntdll!TppWorkerThread+0x2df 000000fa`e1fffbe0 00007ffc`6a17ecdb KERNEL32!BaseThreadInitThunk+0x10 000000fa`e1fffc10 00000000`00000000 ntdll!RtlUserThreadStart+0x2b 2 Id: 1be8.182c Suspend: 1 Teb: 000000fa`e172d000 Unfrozen Child-SP RetAddr Call Site 000000fa`e23ff4d8 00007ffc`6a10b77f ntdll!NtWaitForWorkViaWorkerFactory+0x14 000000fa`e23ff4e0 00007ffc`69aa4cb0 ntdll!TppWorkerThread+0x2df 000000fa`e23ff7d0 00007ffc`6a17ecdb KERNEL32!BaseThreadInitThunk+0x10 000000fa`e23ff800 00000000`00000000 ntdll!RtlUserThreadStart+0x2b 3 Id: 1be8.cf0 Suspend: 1 Teb: 000000fa`e172f000 Unfrozen Child-SP RetAddr Call Site 000000fa`e27ff668 00007ffc`6a10b77f ntdll!NtWaitForWorkViaWorkerFactory+0x14 000000fa`e27ff670 00007ffc`69aa4cb0 ntdll!TppWorkerThread+0x2df 000000fa`e27ff960 00007ffc`6a17ecdb KERNEL32!BaseThreadInitThunk+0x10 000000fa`e27ff990 00000000`00000000 ntdll!RtlUserThreadStart+0x2b 4 Id: 1be8.167c Suspend: 1 Teb: 000000fa`e1731000 Unfrozen Child-SP RetAddr Call Site 000000fa`e2bff778 00007ffc`67ab45ca ntdll!NtFsControlFile+0x14 000000fa`e2bff780 00007ff6`403e05eb KERNELBASE!ConnectNamedPipe+0x6a 000000fa`e2bff7f0 00007ffc`69aa4cb0 postgres!pg_signal_thread( void * param = 0x00000000`00000000)+0xcb [c:\cirrus\src\backend\port\win32\signal.c @ 306] 000000fa`e2bff8f0 00007ffc`6a17ecdb KERNEL32!BaseThreadInitThunk+0x10 000000fa`e2bff920 00000000`00000000 ntdll!RtlUserThreadStart+0x2b 5 Id: 1be8.1bbc Suspend: 1 Teb: 000000fa`e1733000 Unfrozen Child-SP RetAddr Call Site 000000fa`e2fffc78 00007ffc`67a6d71e ntdll!NtWaitForSingleObject+0x14 000000fa`e2fffc80 00007ff6`403e208c KERNELBASE!WaitForSingleObjectEx+0x8e 000000fa`e2fffd20 00007ffc`69aa4cb0 postgres!pg_timer_thread( void * param = 0x00000000`00000000)+0x4c [c:\cirrus\src\backend\port\win32\timer.c @ 48] 000000fa`e2fffd60 00007ffc`6a17ecdb KERNEL32!BaseThreadInitThunk+0x10 000000fa`e2fffd90 00000000`00000000 ntdll!RtlUserThreadStart+0x2b PEB at 000000fae1728000 InheritedAddressSpace: No ReadImageFileExecOptions: No BeingDebugged: Yes ImageBaseAddress: 00007ff63ff40000 NtGlobalFlag: 0 NtGlobalFlag2: 0 Ldr 00007ffc6a273140 Ldr.Initialized: Yes Ldr.InInitializationOrderModuleList: 00000290f49c6b30 . 00000290f4a329d0 Ldr.InLoadOrderModuleList: 00000290f49c6cb0 . 00000290f4a329b0 Ldr.InMemoryOrderModuleList: 00000290f49c6cc0 . 00000290f4a329c0 Base TimeStamp Module 7ff63ff40000 671dc9d1 Oct 27 05:04:17 2024 C:\cirrus\build\tmp_install\usr\local\pgsql\bin\postgres.exe 7ffc6a100000 85b2863e Jan 29 10:51:42 2041 C:\Windows\SYSTEM32\ntdll.dll 7ffc69a90000 266eeed7 Jun 08 00:18:31 1990 C:\Windows\System32\KERNEL32.DLL 7ffc67a30000 0b989c63 Mar 01 17:54:43 1976 C:\Windows\System32\KERNELBASE.dll 7ffc692b0000 56e83747 Mar 15 16:24:39 2016 C:\Windows\System32\WS2_32.dll 7ffc69740000 62746217 May 05 23:47:35 2022 C:\Windows\System32\RPCRT4.dll 7ffc68030000 dc811887 Mar 25 16:25:43 2087 C:\Windows\System32\WLDAP32.dll 7ffc67840000 eb78ec60 Mar 10 04:43:12 2095 C:\Windows\System32\ucrtbase.dll 7ffc694e0000 7c2f91f1 Jan 09 11:52:17 2036 C:\Windows\System32\ADVAPI32.dll 7ffc69200000 68e1e0af Oct 05 03:06:23 2025 C:\Windows\System32\msvcrt.dll 7ffc6a010000 3461349e Nov 06 03:08:14 1997 C:\Windows\System32\sechost.dll 7ffc67a00000 3bdd8bbd Oct 29 17:02:53 2001 C:\Windows\System32\bcrypt.dll 7ffc527b0000 6514993f Sep 27 21:06:07 2023 C:\Windows\SYSTEM32\libssl-1_1-x64.dll 7ffc51fa0000 6514991d Sep 27 21:05:33 2023 C:\Windows\SYSTEM32\libcrypto-1_1-x64.dll 7ffc562f0000 c3642e5c Nov 17 05:36:28 2073 C:\Windows\SYSTEM32\Secur32.dll 7ffc69330000 6051f4c5 Mar 17 12:23:33 2021 C:\Windows\System32\USER32.dll 7ffc67950000 2979174f Jan 19 06:14:39 1992 C:\Windows\System32\win32u.dll 7ffc69710000 784b1edd Dec 14 16:03:41 2033 C:\Windows\System32\GDI32.dll 7ffc67680000 b4b91832 Jan 29 22:20:34 2066 C:\Windows\System32\gdi32full.dll 7ffc677a0000 e46c287d Jun 10 05:58:21 2091 C:\Windows\System32\msvcp_win.dll 7ffc533a0000 66bea367 Aug 16 00:55:03 2024 C:\Windows\SYSTEM32\VCRUNTIME140D.dll 7ffc52860000 b6102be9 Oct 17 03:52:09 2066 C:\Windows\SYSTEM32\ucrtbased.dll 7ffc53b60000 66bea368 Aug 16 00:55:04 2024 C:\Windows\SYSTEM32\VCRUNTIME140.dll 7ffc67030000 8199e7b5 Nov 26 01:19:49 2038 C:\Windows\SYSTEM32\SSPICLI.DLL 7ffc66b80000 06d626ed Aug 20 12:32:45 1973 C:\Windows\system32\mswsock.dll 7ffc532f0000 7406c981 Sep 08 02:44:17 2031 C:\Windows\system32\wshunix.dll 7ffc66de0000 ab2bdb14 Jan 01 04:07:48 2061 C:\Windows\SYSTEM32\CRYPTSP.dll 7ffc66680000 6147b774 Sep 19 22:19:32 2021 C:\Windows\system32\rsaenh.dll 7ffc66dd0000 889c9ae0 Aug 18 08:50:40 2042 C:\Windows\SYSTEM32\CRYPTBASE.dll 7ffc67980000 31c2c51e Jun 15 14:13:50 1996 C:\Windows\System32\bcryptPrimitives.dll 7ffc63200000 671dc9d2 Oct 27 05:04:18 2024 C:\cirrus\build\tmp_install\usr\local\pgsql\lib\utf8_and_win.dll SubSystemData: 0000000000000000 ProcessHeap: 00000290f49c0000 ProcessParameters: 00000290f49cd570 CurrentDirectory: 'C:\cirrus\build\testrun\isolation\isolation\tmp_check\data\' WindowTitle: 'C:\cirrus\build\tmp_install\usr\local\pgsql\bin\postgres.exe' ImageFile: 'C:\cirrus\build\tmp_install\usr\local\pgsql\bin\postgres.exe' CommandLine: '"C:/cirrus/build/tmp_install/usr/local/pgsql/bin/postgres.exe" --forkchild="backend" 5328' DllPath: '< Name not readable >' Environment: 00000290f49c11f0 =C:=C:\cirrus\build\testrun\isolation\isolation\tmp_check\data ALLUSERSPROFILE=C:\ProgramData APPDATA=C:\Windows\system32\config\systemprofile\AppData\Roaming CHOCOLATEYINSTALL=C:\ProgramData\chocolatey COMMANDPROMPTTYPE=Native COMMONPROGRAMFILES=C:\Program Files\Common Files COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files COMMONPROGRAMW6432=C:\Program Files\Common Files COMPUTERNAME=BUILD-PG-CI-WIN COMSPEC=C:\Windows\system32\cmd.exe DEFAULT_PERL_VERSION=5.40.0.1 DEVENVDIR=C:\BuildTools\Common7\IDE\ DRIVERDATA=C:\Windows\System32\Drivers\DriverData EXTENSIONSDKDIR=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs FRAMEWORK40VERSION=v4.0 FRAMEWORKDIR=C:\Windows\Microsoft.NET\Framework64\ FRAMEWORKDIR64=C:\Windows\Microsoft.NET\Framework64\ FRAMEWORKVERSION=v4.0.30319 FRAMEWORKVERSION64=v4.0.30319 GOOGETROOT=C:\ProgramData\GooGet IMAGE_IDENTITY=pg-ci-windows-ci-2024-10-27t00-32-12 INCLUDE=C:\BuildTools\VC\Tools\MSVC\14.29.30133\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.20348.0\ucrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.20348.0\shared;C:\Program Files (x86)\Windows Kits\10\include\10.0.20348.0\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.20348.0\winrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.20348.0\cppwinrt LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252 LC_MESSAGES=C LC_MONETARY=C LC_NUMERIC=C LC_TIME=C LIB=C:\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.20348.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.20348.0\um\x64 LIBPATH=C:\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x64;C:\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.20348.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.20348.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 LOCALAPPDATA=C:\Windows\system32\config\systemprofile\AppData\Local MSYSTEM=UCRT64 NUMBER_OF_PROCESSORS=4 OS=Windows_NT PATH=C:\cirrus\build\tmp_install\usr\local\pgsql\bin;C:\cirrus\build\src/test\isolation;C:\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Windows Kits\10\bin\10.0.20348.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\BuildTools\Common7\IDE\;C:\BuildTools\Common7\Tools\;C:\BuildTools\VC\Auxiliary\Build;C:\zstd\zstd-v1.5.2-win64;C:\zlib;C:\lz4;C:\icu;C:\winflexbison;C:\strawberry\5.40.0.1\perl\bin;C:\python\Scripts\;C:\python\;C:\Windows Kits\10\Debuggers\x64;C:\Program Files\Git\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\ProgramData\GooGet;C:\Program Files\Google\Compute Engine\metadata_scripts;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Program Files\PowerShell\7\;C:\Program Files\Google\Compute Engine\sysprep;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW;.CPL PGAPPNAME=pg_regress PGDATESTYLE=Postgres, MDY PGHOST=c:/cirrus/ PGOPTIONS= -c intervalstyle=postgres_verbose PGPORT=40050 PGSYSCONFDIR=/usr/local/pgsql/etc PGTZ=America/Los_Angeles PG_ABS_BUILDDIR=C:/cirrus/build/testrun/isolation/isolation PG_ABS_SRCDIR=C:/cirrus/src/test/isolation PG_DLSUFFIX=.dll PG_LIBDIR=C:/cirrus/build/src/test/isolation PG_RESTRICT_EXEC=1 POWERSHELL_DISTRIBUTION_CHANNEL=MSI:Windows Server 2022 Datacenter PROCESSOR_ARCHITECTURE=AMD64 PROCESSOR_IDENTIFIER=AMD64 Family 25 Model 1 Stepping 0, AuthenticAMD PROCESSOR_LEVEL=25 PROCESSOR_REVISION=0100 PROGRAMDATA=C:\ProgramData PROGRAMFILES=C:\Program Files PROGRAMFILES(X86)=C:\Program Files (x86) PROGRAMW6432=C:\Program Files PROMPT=$P$G PSEXECUTIONPOLICYPREFERENCE=Unrestricted PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\platform\PowerShell PUBLIC=C:\Users\Public SYSTEMDRIVE=C: SYSTEMROOT=C:\Windows TEMP=C:\Windows\TEMP TMP=C:\Windows\TEMP UCRTVERSION=10.0.20348.0 UNIVERSALCRTSDKDIR=C:\Program Files (x86)\Windows Kits\10\ USERDOMAIN=WORKGROUP USERNAME=BUILD-PG-CI-WIN$ USERPROFILE=C:\Windows\system32\config\systemprofile VCIDEINSTALLDIR=C:\BuildTools\Common7\IDE\VC\ VCINSTALLDIR=C:\BuildTools\VC\ VCTOOLSINSTALLDIR=C:\BuildTools\VC\Tools\MSVC\14.29.30133\ VCTOOLSVERSION=14.29.30133 VISUALSTUDIOVERSION=16.0 VS160COMNTOOLS=C:\BuildTools\Common7\Tools\ VSCMD_ARG_APP_PLAT=Desktop VSCMD_ARG_HOST_ARCH=x64 VSCMD_ARG_TGT_ARCH=x64 VSCMD_VER=16.11.41 VSINSTALLDIR=C:\BuildTools\ WINDIR=C:\Windows CIRRUS_WINDOWS_ERROR_MODE=0x8001 PG_TEST_USE_UNIX_SOCKETS=1 CONTAINER_REPO=us-docker.pkg.dev/pg-ci-images/ci CIRRUS_CHANGE_TITLE=[CF 50/5229] v1 - Add ExprState hashing for GROUP BY and hashed SubPlans CIRRUS_TASK_NAME=Windows - Server 2019, VS 2019 - Meson & ninja CIRRUS_COMMIT_MESSAGE=[CF 50/5229] v1 - Add ExprState hashing for GROUP BY and hashed SubPlans This commit was automatically generated by a robot at cfbot.cputube.org. It is based on patches submitted to the PostgreSQL mailing lists and registered in the PostgreSQL Commitfest application. This branch will be overwritten each time a new patch version is posted to the email thread, and also periodically to check for bitrot caused by changes on the master branch. Commitfest entry: https://commitfest.postgresql.org/50/5229 Patch(es): https://www.postgresql.org/message-id/CAApHDvpYSO3kc9UryMevWqthTBrxgfd9djiAjKHMPUSQeX9vdQ@mail.gmail.com Author(s): David Rowley IMAGE_PROJECT=pg-ci-images PG_TEST_EXTRA=kerberos ldap ssl libpq_encryption load_balance GCP_PROJECT=pg-ci-images TEMP_CONFIG=c:/cirrus/src/tools/ci/pg_ci_base.conf CIRRUS_RESOLUTION_STRATEGY=SAME_SHA TERM=xterm-256color CIRRUS_REPO_NAME=postgresql CIRRUS_BRANCH=cf/5229 PROVE_FLAGS=--timer MTEST_ARGS=--print-errorlogs --no-rebuild -C build PLATFORM=x64 TAR=c:/windows/system32/tar.exe CCACHE_MAXSIZE=250M CIRRUS_CPU=4 CIRRUS_CHANGE_TIMESTAMP=1730005224000 CI=true CIRRUS_BUILD_ID=5851945468952576 CIRRUS_HTTP_CACHE_HOST=127.0.0.1:12321 PGCTLTIMEOUT=120 BRANCH=cf/5229 CIRRUS_OS=windows CHECK=check-world PROVE_FLAGS=--timer CIRRUS_CLONE_DEPTH=500 CIRRUS_BUILD_SOURCE=github CIRRUS_TASK_ID=5929758934958080 CIRRUS_WORKING_DIR=c:/cirrus CIRRUS_ENV=C:\Windows\SystemTemp\cirrus-env-task-5929758934958080-57c8ddbe-577d-4aa2-848a-a2ce6a6b33f8 LANG=en_US.UTF-8 CIRRUS_USER_PERMISSION=admin CIRRUS_CHANGE_MESSAGE=[CF 50/5229] v1 - Add ExprState hashing for GROUP BY and hashed SubPlans This commit was automatically generated by a robot at cfbot.cputube.org. It is based on patches submitted to the PostgreSQL mailing lists and registered in the PostgreSQL Commitfest application. This branch will be overwritten each time a new patch version is posted to the email thread, and also periodically to check for bitrot caused by changes on the master branch. Commitfest entry: https://commitfest.postgresql.org/50/5229 Patch(es): https://www.postgresql.org/message-id/CAApHDvpYSO3kc9UryMevWqthTBrxgfd9djiAjKHMPUSQeX9vdQ@mail.gmail.com Author(s): David Rowley DISK_SIZE=50 IMAGE_FAMILY=pg-ci-windows-ci CIRRUS_OIDC_TOKEN=eyJraWQiOiJBdjFqQVlqUE54a3g0YUpfVHloeVU0c3p6VXBQMVlXdE0yTEJIckF0ZWgwIiwidHlwIjoiSldUIiwiYWxnIjoiUlMyNTYifQ.eyJvd25lciI6InBvc3RncmVzcWwtY2Zib3QiLCJ0YXNrX25hbWUiOiJXaW5kb3dzIC0gU2VydmVyIDIwMTksIFZTIDIwMTkgLSBNZXNvbiAmIG5pbmphIiwic3ViIjoicmVwbzpnaXRodWI6cG9zdGdyZXNxbC1jZmJvdC9wb3N0Z3Jlc3FsIiwib3duZXJfaWQiOiIzMTE3MzEwNyIsInJlcG9zaXRvcnlfdmlzaWJpbGl0eSI6InB1YmxpYyIsImlzcyI6Imh0dHBzOi8vb2lkYy5jaXJydXMtY2kuY29tIiwidGFza19pZCI6IjU5Mjk3NTg5MzQ5NTgwODAiLCJyZXBvc2l0b3J5IjoicG9zdGdyZXNxbCIsImJyYW5jaCI6ImNmLzUyMjkiLCJwbGF0Zm9ybSI6ImdpdGh1YiIsImF1ZCI6Imh0dHBzOi8vY2lycnVzLWNpLmNvbS9naXRodWIvcG9zdGdyZXNxbC1jZmJvdCIsIm5iZiI6MTczMDAwNTM2NiwiYnVpbGRfaWQiOiI1ODUxOTQ1NDY4OTUyNTc2IiwidXNlcl9wZXJtaXNzaW9uIjoiYWRtaW4iLCJyZXBvc2l0b3J5X2lkIjoiNTMwOTQyOTkxMjQzNjczNiIsImV4cCI6MTczMDAwOTU2NiwiaWF0IjoxNzMwMDA1MzY2LCJ1c2VyX2NvbGxhYm9yYXRvciI6InRydWUiLCJqdGkiOiI4NmQzMDQ3Yi04MDU1LTQzNTYtOTg4YS00YTQ0MWMxODc4NDAiLCJjaGFuZ2VfaW5fcmVwbyI6IjJhZjI4OGY3YTlmMTFiNmI5MjU3NjgxMTQ5ZDFhZTVlM2MyYTcxNjkifQ.nrhEOdT9-Ax7ABvhuX0P_uRVlfzTxK5-VA79FlM0IrMdLK1pS_Q3RnJY3kwAP8XcgFwbSoAc_vgyrghxz1DqTrVSZyckOhYAbH-D86YpZI6mj3tB_EX2cu5unsQSu1iMoooAOYil7adDopvdvbzUA86ynvt2Ese0qlBufMe-1qXAgUaj5UeLnztgdbN6uNJL8BcoW_-UVKxIx41geWaE_LlrbIt7P685UHGUcLHnJLjN2ndeaYEHwy02SBVK_-rvFSo7f-WdWlpmepdDu-OVIbWk1rZymcEsqG_USKxIvN47LLxJ4gCpxYClMkzm1POUFWg5argDo63fb3-OAvATaQ CI_NODE_TOTAL=8 GITHUB_CHECK_SUITE_ID=30139404477 CIRRUS_REPO_FULL_NAME=postgresql-cfbot/postgresql CPUS=4 REPO_CI_CONFIG_GIT_URL=github.com/postgresql-cfbot/ci-config/gcp_and_macos_workers.yml@main CIRRUS_LOG_TIMESTAMP=true CIRRUS_REPO_CLONE_URL=https://github.com/postgresql-cfbot/postgresql.git CHECKFLAGS=-Otarget TEST_JOBS=8 CONTINUOUS_INTEGRATION=true CIRRUS_REPO_OWNER=postgresql-cfbot CIRRUS_REPO_CLONE_TOKEN=ghs_14blfGHtj719r5VHI1PWOTbolKja7Y0HDRTV CIRRUS_ARCH=amd64 CIRRUS_USER_COLLABORATOR=true CIRRUS_LAST_GREEN_CHANGE=ea039622fd78721d2d7be589de09b30304cf0088 CIRRUS_LAST_GREEN_BUILD_ID=4650683146698752 CIRRUS_CHANGE_IN_REPO=2af288f7a9f11b6b9257681149d1ae5e3c2a7169 PG_REGRESS_SOCK_DIR=c:/cirrus/ CIRRUS_REPO_CLONE_HOST=github.com CIRRUS_DEFAULT_BRANCH=master CIRRUS_REPO_ID=5309429912436736 CI_NODE_INDEX=5 CIRRUS_CI=true WINDOWSLIBPATH=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.20348.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.20348.0 WINDOWSSDKBINPATH=C:\Program Files (x86)\Windows Kits\10\bin\ WINDOWSSDKDIR=C:\Program Files (x86)\Windows Kits\10\ WINDOWSSDKLIBVERSION=10.0.20348.0\ WINDOWSSDKVERBINPATH=C:\Program Files (x86)\Windows Kits\10\bin\10.0.20348.0\ WINDOWSSDKVERSION=10.0.20348.0\ __DOTNET_ADD_64BIT=1 __DOTNET_PREFERRED_BITNESS=64 __VSCMD_PREINIT_PATH=C:\BuildTools\VC\Auxiliary\Build;C:\zstd\zstd-v1.5.2-win64;C:\zlib;C:\lz4;C:\icu;C:\winflexbison;C:\strawberry\5.40.0.1\perl\bin;C:\python\Scripts\;C:\python\;C:\Windows Kits\10\Debuggers\x64;C:\Program Files\Git\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\ProgramData\GooGet;C:\Program Files\Google\Compute Engine\metadata_scripts;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Program Files\PowerShell\7\;C:\Program Files\Google\Compute Engine\sysprep;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps; PG_REGRESS=C:\cirrus\build\src/test\regress\pg_regress.exe REGRESS_SHLIB=C:\cirrus\build\src/test\regress\regress.dll INITDB_TEMPLATE=C:/cirrus/build/tmp_install/initdb-template MESON_TEST_ITERATION=1 MALLOC_PERTURB_=32 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 TESTDATADIR=C:\cirrus\build/testrun/isolation/isolation\data TESTLOGDIR=C:\cirrus\build/testrun/isolation/isolation\log Closing open log file c:/cirrus/crashlog-postgres.exe_1538_2024-10-27_05-06-49-279.txt