File tree Expand file tree Collapse file tree 2 files changed +28
-11
lines changed
Expand file tree Collapse file tree 2 files changed +28
-11
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ ivorysql_ora_sources = files(
2626 ' src/merge/ora_merge.c' ,
2727 ' src/sysview/sysview_functions.c' ,
2828 ' src/xml_functions/ora_xml_functions.c' ,
29+ ' src/builtin_packages/dbms_utility/dbms_utility.c' ,
2930)
3031
3132if host_system == ' windows'
@@ -44,6 +45,7 @@ custom_target('ivorysql_ora--1.0.sql',
4445
4546ivorysql_ora = shared_module (' ivorysql_ora' ,
4647 ivorysql_ora_sources,
48+ include_directories : plisql_inc,
4749 kwargs : contrib_mod_args,
4850)
4951contrib_targets += ivorysql_ora
@@ -64,16 +66,29 @@ tests += {
6466 ' bd' : meson .current_build_dir(),
6567 ' regress' : {
6668 ' sql' : [
67- ' check' ,
68- ' check_btree' ,
69- ' check_heap' ,
70- ],
71- },
72- ' tap' : {
73- ' tests' : [
74- ' t/001_verify_heapam.pl' ,
75- ' t/002_cic.pl' ,
76- ' t/003_cic_2pc.pl' ,
69+ ' ora_character' ,
70+ ' ora_datetime' ,
71+ ' ora_interval' ,
72+ ' ora_number' ,
73+ ' ora_binary_float' ,
74+ ' ora_binary_double' ,
75+ ' ora_raw_long' ,
76+ ' ora_character_datatype_functions' ,
77+ ' ora_datetime_datatype_functions' ,
78+ ' ora_misc_functions' ,
79+ ' ora_merge' ,
80+ ' datatype_and_func_bugs' ,
81+ ' ora_sysview' ,
82+ ' ora_like_operator' ,
83+ ' ora_xml_functions' ,
84+ ' dbms_utility' ,
7785 ],
86+ ' tap' : {
87+ ' tests' : [
88+ ' t/001_verify_heapam.pl' ,
89+ ' t/002_cic.pl' ,
90+ ' t/003_cic_2pc.pl' ,
91+ ]
92+ },
7893 },
7994}
Original file line number Diff line number Diff line change @@ -53,10 +53,12 @@ if host_system == 'windows'
5353 ' --FILEDESC' , ' PL/iSQL - procedural language' ,])
5454endif
5555
56+ plisql_inc = include_directories (' .' )
57+
5658plisql = shared_module (' plisql' ,
5759 plisql_sources,
5860 c_pch : pch_postgres_h,
59- include_directories : include_directories ( ' . ' ) ,
61+ include_directories : plisql_inc ,
6062 link_with : ora_parser,
6163 kwargs : pg_mod_args,
6264)
You can’t perform that action at this time.
0 commit comments