postgresql/src/interfaces/ecpg/test/expected
Amit Langote de3600452b Add basic JSON_TABLE() functionality
JSON_TABLE() allows JSON data to be converted into a relational view
and thus used, for example, in a FROM clause, like other tabular
data.  Data to show in the view is selected from a source JSON object
using a JSON path expression to get a sequence of JSON objects that's
called a "row pattern", which becomes the source to compute the
SQL/JSON values that populate the view's output columns.  Column
values themselves are computed using JSON path expressions applied to
each of the JSON objects comprising the "row pattern", for which the
SQL/JSON query functions added in 6185c9737c are used.

To implement JSON_TABLE() as a table function, this augments the
TableFunc and TableFuncScanState nodes that are currently used to
support XMLTABLE() with some JSON_TABLE()-specific fields.

Note that the JSON_TABLE() spec includes NESTED COLUMNS and PLAN
clauses, which are required to provide more flexibility to extract
data out of nested JSON objects, but they are not implemented here
to keep this commit of manageable size.

Author: Nikita Glukhov <n.gluhov@postgrespro.ru>
Author: Teodor Sigaev <teodor@sigaev.ru>
Author: Oleg Bartunov <obartunov@gmail.com>
Author: Alexander Korotkov <aekorotkov@gmail.com>
Author: Andrew Dunstan <andrew@dunslane.net>
Author: Amit Langote <amitlangote09@gmail.com>
Author: Jian He <jian.universality@gmail.com>

Reviewers have included (in no particular order):

Andres Freund, Alexander Korotkov, Pavel Stehule, Andrew Alsup,
Erik Rijkers, Zihong Yu, Himanshu Upadhyaya, Daniel Gustafsson,
Justin Pryzby, Álvaro Herrera, Jian He

Discussion: https://postgr.es/m/cd0bb935-0158-78a7-08b5-904886deac4b@postgrespro.ru
Discussion: https://postgr.es/m/20220616233130.rparivafipt6doj3@alap3.anarazel.de
Discussion: https://postgr.es/m/abd9b83b-aa66-f230-3d6d-734817f0995d%40postgresql.org
Discussion: https://postgr.es/m/CA+HiwqE4XTdfb1nW=Ojoy_tQSRhYt-q_kb6i5d4xcKyrLC1Nbg@mail.gmail.com
2024-04-04 20:20:15 +09:00
..
compat_informix-charfuncs.c - Removed duplicate include of ecpgtype.h which meant I had to adapt all expected results. 2008-02-17 18:14:29 +00:00
compat_informix-charfuncs.stderr Sorry, forgot the new files. 2006-08-15 06:48:24 +00:00
compat_informix-charfuncs.stdout Sorry, forgot the new files. 2006-08-15 06:48:24 +00:00
compat_informix-dec_test.c Un-break ecpg tests for Windows. 2019-06-02 11:07:54 -04:00
compat_informix-dec_test.stderr Sorry, forgot the new files. 2006-08-15 06:48:24 +00:00
compat_informix-dec_test.stdout ecpg: Fix return code for overflow in numeric conversion 2024-03-25 14:18:36 +01:00
compat_informix-describe.c Remove unnecessary parentheses in return statements 2017-09-05 14:52:55 -04:00
compat_informix-describe.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
compat_informix-describe.stdout Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add DESCRIBE [OUTPUT] statement to ecpg. 2010-01-15 10:44:39 +00:00
compat_informix-intoasc.c ecpg: Fix zero-termination of string generated by intoasc() 2024-02-19 11:38:18 +09:00
compat_informix-intoasc.stderr ecpg: Fix zero-termination of string generated by intoasc() 2024-02-19 11:38:18 +09:00
compat_informix-intoasc.stdout ecpg: Fix zero-termination of string generated by intoasc() 2024-02-19 11:38:18 +09:00
compat_informix-rfmtdate.c Add some const decorations to prototypes 2017-11-10 13:38:57 -05:00
compat_informix-rfmtdate.stderr Sorry, forgot the new files. 2006-08-15 06:48:24 +00:00
compat_informix-rfmtdate.stdout Sorry, forgot the new files. 2006-08-15 06:48:24 +00:00
compat_informix-rfmtlong.c Add some const decorations to prototypes 2017-11-10 13:38:57 -05:00
compat_informix-rfmtlong.stderr Sorry, forgot the new files. 2006-08-15 06:48:24 +00:00
compat_informix-rfmtlong.stdout Sorry, forgot the new files. 2006-08-15 06:48:24 +00:00
compat_informix-rnull.c Fix MSVC warning in compat_informix/rnull.pgc 2022-08-31 09:31:22 -07:00
compat_informix-rnull.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
compat_informix-rnull.stdout Added another test 2006-08-19 15:10:00 +00:00
compat_informix-sqlda.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
compat_informix-sqlda.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
compat_informix-sqlda.stdout Removed test case using nan as float value because printf's output for nan is 2010-01-06 11:59:52 +00:00
compat_informix-test_informix.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
compat_informix-test_informix.stderr Make some ecpg test cases more robust against unexpected errors that happen 2019-01-30 10:39:32 +01:00
compat_informix-test_informix.stdout Made sure sqlca is reset for declare cursor in Informix mode as pointed out by 2009-08-14 13:28:22 +00:00
compat_informix-test_informix2.c Make some ecpg test cases more robust against unexpected errors that happen 2019-01-30 10:39:32 +01:00
compat_informix-test_informix2.stderr Make some ecpg test cases more robust against unexpected errors that happen 2019-01-30 10:39:32 +01:00
compat_informix-test_informix2.stdout
compat_oracle-char_array.c ecpg: Fix handling of strings in ORACLE compat code with SQLDA 2023-04-18 11:20:41 +09:00
compat_oracle-char_array.stderr ecpg: Fix handling of strings in ORACLE compat code with SQLDA 2023-04-18 11:20:41 +09:00
compat_oracle-char_array.stdout ecpg: Fix handling of strings in ORACLE compat code with SQLDA 2023-04-18 11:20:41 +09:00
connect-test1-minGW32.stderr Update ecpg's connect-test1 for connection-failure message changes. 2021-01-23 15:08:39 -05:00
connect-test1.c Increase hard-wired timeout values in ecpg regression tests. 2020-08-04 15:20:31 -04:00
connect-test1.stderr Update ecpg's connect-test1 for connection-failure message changes. 2021-01-23 15:08:39 -05:00
connect-test1.stdout Applied Joachim's patch for a --regression option. 2007-01-11 15:47:34 +00:00
connect-test2.c Remove unnecessary parentheses in return statements 2017-09-05 14:52:55 -04:00
connect-test2.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
connect-test2.stdout
connect-test3.c Remove unnecessary parentheses in return statements 2017-09-05 14:52:55 -04:00
connect-test3.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
connect-test3.stdout
connect-test4.c Remove unnecessary parentheses in return statements 2017-09-05 14:52:55 -04:00
connect-test4.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
connect-test4.stdout
connect-test5.c Use ICU by default at initdb time. 2023-03-09 10:52:41 -08:00
connect-test5.stderr Use ICU by default at initdb time. 2023-03-09 10:52:41 -08:00
connect-test5.stdout - Enabled single-quoted connection targets. 2006-08-27 16:15:42 +00:00
pgtypeslib-dt_test.c Fix off-by-one error in PGTYPEStimestamp_fmt_asc 2019-11-30 14:51:27 +01:00
pgtypeslib-dt_test.stderr Fix off-by-one error in PGTYPEStimestamp_fmt_asc 2019-11-30 14:51:27 +01:00
pgtypeslib-dt_test.stdout Fix off-by-one error in PGTYPEStimestamp_fmt_asc 2019-11-30 14:51:27 +01:00
pgtypeslib-dt_test2.c Add PGTYPESchar_free() to avoid cross-module problems on Windows. 2018-06-18 18:33:53 +12:00
pgtypeslib-dt_test2.stderr
pgtypeslib-dt_test2.stdout De-support floating-point timestamps. 2017-02-23 11:40:20 -05:00
pgtypeslib-nan_test.c Remove some code for old unsupported versions of MSVC 2019-10-08 10:50:54 +02:00
pgtypeslib-nan_test.stderr Remove some code for old unsupported versions of MSVC 2019-10-08 10:50:54 +02:00
pgtypeslib-nan_test.stdout Fixed NaN/Infinity problems in ECPG for float/double/numeric/decimal by making it OS independant. 2010-02-02 16:09:12 +00:00
pgtypeslib-num_test.c Fix range check in ECPG numeric to int conversion 2021-07-30 15:39:22 -04:00
pgtypeslib-num_test.stderr Fix range check in ECPG numeric to int conversion 2021-07-30 15:39:22 -04:00
pgtypeslib-num_test.stdout Fix range check in ECPG numeric to int conversion 2021-07-30 15:39:22 -04:00
pgtypeslib-num_test2.c Un-break ecpg tests for Windows. 2019-06-02 11:07:54 -04:00
pgtypeslib-num_test2.stderr Joachim fixed some bugs in numeric handling in pgtypeslib. 2006-08-07 13:17:02 +00:00
pgtypeslib-num_test2.stdout Removed compiler warning due to unneeded unsigned declaration. 2007-01-25 16:45:25 +00:00
preproc-array_of_struct.c Remove unnecessary parentheses in return statements 2017-09-05 14:52:55 -04:00
preproc-array_of_struct.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
preproc-array_of_struct.stdout Fixed bug that caused arrays of varchar to be output with incomplete name. 2008-03-02 10:54:11 +00:00
preproc-autoprep.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
preproc-autoprep.stderr Minor additional improvements for ecpglib/prepare.c. 2018-10-17 14:22:33 -04:00
preproc-autoprep.stdout Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to fix problem in auto-prepare mode if the connection is closed and re-opened and the previously prepared query is issued again. 2010-01-22 14:13:03 +00:00
preproc-comment.c Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
preproc-comment.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
preproc-comment.stdout Replaced complex tests with small ones. 2006-09-08 13:32:29 +00:00
preproc-cursor.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
preproc-cursor.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
preproc-cursor.stdout Added test for cursor handling on different connections to regression test 2011-12-18 18:44:14 +01:00
preproc-define.c Remove duplicate include 2021-01-25 08:55:43 +01:00
preproc-define.stderr Remove duplicate include 2021-01-25 08:55:43 +01:00
preproc-define.stdout More logic from complex/test* moved to their own testcases. 2006-09-08 09:03:40 +00:00
preproc-describe.c Remove unnecessary parentheses in return statements 2017-09-05 14:52:55 -04:00
preproc-describe.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
preproc-describe.stdout Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add DESCRIBE [OUTPUT] statement to ecpg. 2010-01-15 10:44:39 +00:00
preproc-init.c Add some const decorations to prototypes 2017-11-10 13:38:57 -05:00
preproc-init.stderr NLS cleanup in ecpglib 2009-01-15 11:52:55 +00:00
preproc-init.stdout Started to cleanup complex tests. 2006-09-05 12:11:03 +00:00
preproc-outofscope.c Harmonize parameter names in ecpg code. 2022-09-22 12:53:20 -07:00
preproc-outofscope.stderr Make some ecpg test cases more robust against unexpected errors that happen 2019-01-30 10:39:32 +01:00
preproc-outofscope.stdout Changed ECPG outofscope handling to always print out statements in the same order 2010-01-29 16:28:13 +00:00
preproc-pointer_to_struct.c Remove unnecessary parentheses in return statements 2017-09-05 14:52:55 -04:00
preproc-pointer_to_struct.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
preproc-pointer_to_struct.stdout Several fixes to array handling in ecpg. 2014-04-09 11:23:38 +02:00
preproc-strings.c Avoid re-using output variables in new ecpg test case. 2020-11-07 16:25:42 -05:00
preproc-strings.stderr Avoid re-using output variables in new ecpg test case. 2020-11-07 16:25:42 -05:00
preproc-strings.stdout Fix ecpg's mishandling of B'...' and X'...' literals. 2020-11-07 15:03:44 -05:00
preproc-type.c Fix ECPG's handling of type names that match SQL keywords. 2022-07-12 17:05:46 -04:00
preproc-type.stderr Fix ECPG's handling of type names that match SQL keywords. 2022-07-12 17:05:46 -04:00
preproc-type.stdout More logic from complex/test* moved to their own testcases. 2006-09-08 09:03:40 +00:00
preproc-variable.c Fix possible omission of variable storage markers in ECPG. 2022-09-09 15:34:04 -04:00
preproc-variable.stderr Fix possible omission of variable storage markers in ECPG. 2022-09-09 15:34:04 -04:00
preproc-variable.stdout Fix possible omission of variable storage markers in ECPG. 2022-09-09 15:34:04 -04:00
preproc-whenever.c Stop using spelling "nonexistant". 2019-06-08 10:12:26 -07:00
preproc-whenever.stderr Stop using spelling "nonexistant". 2019-06-08 10:12:26 -07:00
preproc-whenever.stdout Replaced complex tests with small ones. 2006-09-08 13:32:29 +00:00
preproc-whenever_do_continue.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
preproc-whenever_do_continue.stderr Fix locale dependency in new ecpg test case. 2017-08-25 14:17:33 -04:00
preproc-whenever_do_continue.stdout Fix locale dependency in new ecpg test case. 2017-08-25 14:17:33 -04:00
sql-array.c Fix format truncation issue from ECPG test 2019-08-02 09:51:12 +09:00
sql-array.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-array.stdout Fixed array handling in ecpg. 2015-02-10 12:04:10 +01:00
sql-binary.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
sql-binary.stderr Make some ecpg test cases more robust against unexpected errors that happen 2019-01-30 10:39:32 +01:00
sql-binary.stdout Fixed auto allocation for binary data types. 2009-02-02 16:14:06 +00:00
sql-bytea.c Fix ecpg crash with bytea and cursor variables. 2020-06-30 18:34:41 +02:00
sql-bytea.stderr Fix ecpg crash with bytea and cursor variables. 2020-06-30 18:34:41 +02:00
sql-bytea.stdout Fix ecpg crash with bytea and cursor variables. 2020-06-30 18:34:41 +02:00
sql-code100.c Phase 2 of pgindent updates. 2017-06-21 15:19:25 -04:00
sql-code100.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-code100.stdout
sql-copystdout.c Phase 2 of pgindent updates. 2017-06-21 15:19:25 -04:00
sql-copystdout.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-copystdout.stdout
sql-createtableas.c Sync ECPG's CREATE TABLE AS statement with backend's. 2019-02-18 11:57:34 +01:00
sql-createtableas.stderr Sync ECPG's CREATE TABLE AS statement with backend's. 2019-02-18 11:57:34 +01:00
sql-createtableas.stdout Sync ECPG's CREATE TABLE AS statement with backend's. 2019-02-18 11:57:34 +01:00
sql-declare.c Improved ECPG warning as suggested by Michael Paquier and removed test case 2021-08-17 15:01:09 +02:00
sql-declare.stderr Improved ECPG warning as suggested by Michael Paquier and removed test case 2021-08-17 15:01:09 +02:00
sql-declare.stdout Improved ECPG warning as suggested by Michael Paquier and removed test case 2021-08-17 15:01:09 +02:00
sql-define.c Phase 2 of pgindent updates. 2017-06-21 15:19:25 -04:00
sql-define.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-define.stdout
sql-desc.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
sql-desc.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-desc.stdout Replaced double-quote-fix with a hopefully better version. 2006-08-23 12:01:53 +00:00
sql-describe.c Remove unnecessary parentheses in return statements 2017-09-05 14:52:55 -04:00
sql-describe.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-describe.stdout Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add DESCRIBE [OUTPUT] statement to ecpg. 2010-01-15 10:44:39 +00:00
sql-dynalloc.c Phase 2 of pgindent updates. 2017-06-21 15:19:25 -04:00
sql-dynalloc.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-dynalloc.stdout
sql-dynalloc2.c Phase 2 of pgindent updates. 2017-06-21 15:19:25 -04:00
sql-dynalloc2.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-dynalloc2.stdout
sql-dyntest.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
sql-dyntest.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-dyntest.stdout Fix SQL3 type return value. 2010-01-13 08:41:50 +00:00
sql-execute.c Add documentation and tests for quote marks in ECPG literal queries. 2020-10-22 18:29:46 -04:00
sql-execute.stderr Add documentation and tests for quote marks in ECPG literal queries. 2020-10-22 18:29:46 -04:00
sql-execute.stdout - EXECUTE can return NOT FOUND so it should be checked here too. 2008-02-14 14:54:48 +00:00
sql-fetch.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
sql-fetch.stderr Make some ecpg test cases more robust against unexpected errors that happen 2019-01-30 10:39:32 +01:00
sql-fetch.stdout Fixed parsing of parameters. Added regression test for this. 2008-10-14 09:31:05 +00:00
sql-func.c Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-func.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-func.stdout - Finished major rewrite to use new protocol version 2007-08-14 10:01:54 +00:00
sql-indicators.c Phase 2 of pgindent updates. 2017-06-21 15:19:25 -04:00
sql-indicators.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-indicators.stdout
sql-insupd.c Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-insupd.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-insupd.stdout Added variable handling for RETURNING clause to ecpg. 2010-06-04 10:09:58 +00:00
sql-oldexec.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
sql-oldexec.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-oldexec.stdout - Finished major rewrite to use new protocol version 2007-08-14 10:01:54 +00:00
sql-parser.c Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-parser.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-parser.stdout - Changed some whitespacing in connect statement. 2007-03-17 19:25:24 +00:00
sql-prepareas.c Implement PREPARE AS statement for ECPG. 2019-05-22 04:58:29 +02:00
sql-prepareas.stderr Implement PREPARE AS statement for ECPG. 2019-05-22 04:58:29 +02:00
sql-prepareas.stdout Implement PREPARE AS statement for ECPG. 2019-05-22 04:58:29 +02:00
sql-quote.c Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
sql-quote.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-quote.stdout Make ECPG regression tests independent of standard_conforming_strings. 2010-07-20 01:57:19 +00:00
sql-show.c Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-show.stderr Establish conventions about global object names used in regression tests. 2016-07-17 18:42:43 -04:00
sql-show.stdout Fixed incorrect argument handling in SET command if argument is a variable. 2008-08-19 10:40:32 +00:00
sql-sqlda.c Harmonize parameter names in ecpg code. 2022-09-22 12:53:20 -07:00
sql-sqlda.stderr Remove HAVE_LONG_LONG_INT 2019-11-07 13:30:04 +01:00
sql-sqlda.stdout Second try at fixing numeric data passed through an ECPG SQLDA. 2018-11-14 11:27:47 -05:00
sql-sqljson.c Add more SQL/JSON constructor functions 2023-07-26 17:08:33 +09:00
sql-sqljson.stderr Unify some error messages 2023-08-16 16:17:00 +02:00
sql-sqljson.stdout Add more SQL/JSON constructor functions 2023-07-26 17:08:33 +09:00
sql-sqljson_jsontable.c Add basic JSON_TABLE() functionality 2024-04-04 20:20:15 +09:00
sql-sqljson_jsontable.stderr Add basic JSON_TABLE() functionality 2024-04-04 20:20:15 +09:00
sql-sqljson_jsontable.stdout Add basic JSON_TABLE() functionality 2024-04-04 20:20:15 +09:00
sql-twophase.c Remove unnecessary parentheses in return statements 2017-09-05 14:52:55 -04:00
sql-twophase.stderr Add test case for two phase commit. Also by Masahiko Sawada. 2017-03-13 21:03:55 +01:00
sql-twophase.stdout Add test case for two phase commit. Also by Masahiko Sawada. 2017-03-13 21:03:55 +01:00
thread-alloc.c Remove --disable-thread-safety and related code. 2023-07-12 08:20:43 +12:00
thread-alloc.stderr Applied another patch by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> 2007-09-30 11:38:48 +00:00
thread-alloc.stdout Applied another patch by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> 2007-09-30 11:38:48 +00:00
thread-alloc_2.stdout Applied another patch by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> 2007-09-30 11:38:48 +00:00
thread-descriptor.c Remove --disable-thread-safety and related code. 2023-07-12 08:20:43 +12:00
thread-descriptor.stderr ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> added thread-safe 2007-10-02 09:50:00 +00:00
thread-descriptor.stdout ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> added thread-safe 2007-10-02 09:50:00 +00:00
thread-prep.c Remove --disable-thread-safety and related code. 2023-07-12 08:20:43 +12:00
thread-prep.stderr Applied patch by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> to get prepare thread-safe. 2007-09-26 10:57:01 +00:00
thread-prep.stdout Reverting accidently commited changes. 2009-12-17 07:28:58 +00:00
thread-prep_2.stdout Applied patch by ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp> to get prepare thread-safe. 2007-09-26 10:57:01 +00:00
thread-thread.c Remove --disable-thread-safety and related code. 2023-07-12 08:20:43 +12:00
thread-thread.stderr
thread-thread.stdout Reverting accidently commited changes. 2009-12-17 07:28:58 +00:00
thread-thread_2.stdout Rewrite ECPG regression test driver in C, by splitting the standard 2007-06-12 11:07:34 +00:00
thread-thread_implicit.c Remove --disable-thread-safety and related code. 2023-07-12 08:20:43 +12:00
thread-thread_implicit.stderr
thread-thread_implicit.stdout Reverting accidently commited changes. 2009-12-17 07:28:58 +00:00
thread-thread_implicit_2.stdout Rewrite ECPG regression test driver in C, by splitting the standard 2007-06-12 11:07:34 +00:00