@@ -2,6 +2,137 @@ skip_on_cran()
22
33if (rlang :: is_installed(" DBItest" )) DBItest :: test_all(c(
44 if (! TEST_RE2 ) c(
5+ " send_query_immediate" ,
6+ " clear_result_return_query_arrow" ,
7+ " cannot_clear_result_twice_query_arrow" ,
8+ " get_query_immediate" ,
9+ " send_statement_params" ,
10+ " execute_params" ,
11+ " read_table_missing" ,
12+ " read_table_row_names_false" ,
13+ " read_table_row_names_true_exists" ,
14+ " read_table_row_names_true_missing" ,
15+ " read_table_row_names_na_exists" ,
16+ " read_table_row_names_string_exists" ,
17+ " read_table_row_names_string_missing" ,
18+ " read_table_row_names_default" ,
19+ " read_table_check_names" ,
20+ " read_table_check_names_false" ,
21+ " read_table_closed_connection" ,
22+ " read_table_invalid_connection" ,
23+ " read_table_error" ,
24+ " read_table_name" ,
25+ " create_table_error" ,
26+ " create_table_temporary" ,
27+ " create_table_row_names_non_null" ,
28+ " append_table_missing" ,
29+ " append_table_error" ,
30+ " append_roundtrip_quotes" ,
31+ " append_roundtrip_time" ,
32+ " append_roundtrip_mixed" ,
33+ " write_table_return" ,
34+ " write_table_overwrite" ,
35+ " write_table_append_incompatible" ,
36+ " roundtrip_.*" ,
37+ " write_table_name" ,
38+ " write_table_value_df" ,
39+ " temporary_table" ,
40+ " roundtrip_keywords" ,
41+ " roundtrip_quotes" ,
42+ " roundtrip_quotes_table_names" ,
43+ " roundtrip_integer" ,
44+ " roundtrip_numeric" ,
45+ " roundtrip_logical" ,
46+ " roundtrip_null" ,
47+ " roundtrip_64_bit_numeric" ,
48+ " roundtrip_64_bit_roundtrip" ,
49+ " write_table_row_names_false" ,
50+ " write_table_row_names_true_exists" ,
51+ " write_table_row_names_na_exists" ,
52+ " write_table_row_names_string_exists" ,
53+ " write_table_row_names_default" ,
54+ " list_tables_temporary" ,
55+ " exists_table" ,
56+ " exists_table_temporary" ,
57+ " exists_table_error" ,
58+ " exists_table_name" ,
59+ " remove_table_return" ,
60+ " remove_table_missing" ,
61+ " remove_table_closed_connection" ,
62+ " remove_table_invalid_connection" ,
63+ " remove_table_error" ,
64+ " remove_table_temporary_arg" ,
65+ " remove_table_missing_succeed" ,
66+ " remove_table_temporary" ,
67+ " remove_table_name" ,
68+ " list_objects_temporary" ,
69+ " list_fields" ,
70+ " list_fields_temporary" ,
71+ " list_fields_wrong_table" ,
72+ " list_fields_quoted" ,
73+ " list_fields_row_names" ,
74+ " bind_return_value_statement" ,
75+ " bind_multi_row_unequal_length" ,
76+ " bind_multi_row_statement" ,
77+ " bind_repeated_statement" ,
78+ " bind_repeated_untouched_statement" ,
79+ " arrow_bind_multi_row_unequal_length" ,
80+ " stream_bind_return_value_statement" ,
81+ " stream_bind_multi_row_statement" ,
82+ " stream_bind_repeated_statement" ,
83+ " stream_bind_repeated_untouched_statement" ,
84+ " column_info" ,
85+ " column_info_row_names" ,
86+ " rows_affected_statement" ,
87+ " begin_write_commit" ,
88+ " begin_write_rollback" ,
89+ " begin_write_disconnect" ,
90+ " with_transaction_success" ,
91+ " with_transaction_failure" ,
92+ " with_transaction_break" ,
93+ " arrow_send_query_immediate" ,
94+ " arrow_get_query_arrow_immediate" ,
95+ " arrow_read_table_arrow" ,
96+ " arrow_read_table_arrow_missing" ,
97+ " arrow_read_table_arrow_empty" ,
98+ " arrow_read_table_arrow_closed_connection" ,
99+ " arrow_read_table_arrow_invalid_connection" ,
100+ " arrow_read_table_arrow_error" ,
101+ " arrow_read_table_arrow_name" ,
102+ " arrow_write_table_arrow_return" ,
103+ " arrow_write_table_arrow_error_overwrite" ,
104+ " arrow_write_table_arrow_append_incompatible" ,
105+ " arrow_write_table_arrow_error" ,
106+ " arrow_write_table_arrow_name" ,
107+ " arrow_write_table_arrow_value_df" ,
108+ " arrow_write_table_arrow_overwrite" ,
109+ " arrow_write_table_arrow_overwrite_missing" ,
110+ " arrow_write_table_arrow_append" ,
111+ " arrow_write_table_arrow_append_new" ,
112+ " arrow_write_table_arrow_temporary" ,
113+ " arrow_write_table_arrow_visible_in_other_connection" ,
114+ " arrow_write_table_arrow_roundtrip_quotes" ,
115+ " arrow_write_table_arrow_roundtrip_quotes_table_names" ,
116+ " arrow_write_table_arrow_roundtrip_integer" ,
117+ " arrow_write_table_arrow_roundtrip_numeric" ,
118+ " arrow_write_table_arrow_roundtrip_null" ,
119+ " arrow_write_table_arrow_roundtrip_64_bit_roundtrip" ,
120+ " arrow_write_table_arrow_roundtrip_character_empty" ,
121+ " arrow_write_table_arrow_roundtrip_character_empty_after" ,
122+ " arrow_write_table_arrow_roundtrip_date" ,
123+ " arrow_write_table_arrow_roundtrip_date_extended" ,
124+ " arrow_write_table_arrow_roundtrip_time" ,
125+ " arrow_write_table_arrow_roundtrip_mixed" ,
126+ " arrow_create_table_arrow_error" ,
127+ " arrow_create_table_arrow_temporary" ,
128+ " arrow_create_table_arrow_visible_in_other_connection" ,
129+ " arrow_append_table_arrow_return" ,
130+ " arrow_append_table_arrow_missing" ,
131+ " arrow_append_table_arrow_error" ,
132+ " arrow_append_table_arrow_roundtrip_quotes" ,
133+ " arrow_append_table_arrow_roundtrip_64_bit_roundtrip" ,
134+ " arrow_append_table_arrow_roundtrip_time" ,
135+ " arrow_append_table_arrow_roundtrip_mixed" ,
5136 " list_tables" ,
6137 " list_tables_quote" ,
7138 " list_fields_object" ,
0 commit comments