Skip to content

Commit a6a16aa

Browse files
authored
[APIS-916] Release 11.1 (#30)
* Revised * default port
1 parent 67634cc commit a6a16aa

12 files changed

+84
-81
lines changed

tests/pdo_022.phpt

+6-6
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ array(16) {
6262
["name"]=>
6363
string(2) "id"
6464
["table"]=>
65-
string(11) "cubrid_test"
65+
string(15) "dba.cubrid_test"
6666
["def"]=>
6767
string(4) "NULL"
6868
["precision"]=>
@@ -96,7 +96,7 @@ array(16) {
9696
["name"]=>
9797
string(3) "val"
9898
["table"]=>
99-
string(11) "cubrid_test"
99+
string(15) "dba.cubrid_test"
100100
["def"]=>
101101
string(4) "NULL"
102102
["precision"]=>
@@ -130,7 +130,7 @@ array(16) {
130130
["name"]=>
131131
string(4) "val2"
132132
["table"]=>
133-
string(11) "cubrid_test"
133+
string(15) "dba.cubrid_test"
134134
["def"]=>
135135
string(4) "NULL"
136136
["precision"]=>
@@ -160,15 +160,15 @@ array(16) {
160160
}
161161
array(16) {
162162
["type"]=>
163-
string(7) "integer"
163+
string(6) "bigint"
164164
["name"]=>
165165
string(8) "count(*)"
166166
["table"]=>
167167
string(0) ""
168168
["def"]=>
169169
string(0) ""
170170
["precision"]=>
171-
int(10)
171+
int(19)
172172
["scale"]=>
173173
int(0)
174174
["not_null"]=>
@@ -188,7 +188,7 @@ array(16) {
188188
["reverse_unique"]=>
189189
int(0)
190190
["len"]=>
191-
int(11)
191+
int(20)
192192
["pdo_type"]=>
193193
int(2)
194194
}

tests/pdo_038.phpt

+15-15
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ PDOTest::skip();
1212
require_once 'pdo_test.inc';
1313
$db = PDOTest::factory();
1414

15-
$pk_list = $db->cubrid_schema(PDO::CUBRID_SCH_PRIMARY_KEY, "game");
15+
$pk_list = $db->cubrid_schema(PDO::CUBRID_SCH_PRIMARY_KEY, "public.game");
1616
var_dump($pk_list);
1717

18-
$fk_list = $db->cubrid_schema(PDO::CUBRID_SCH_IMPORTED_KEYS, "game");
18+
$fk_list = $db->cubrid_schema(PDO::CUBRID_SCH_IMPORTED_KEYS, "public.game");
1919
var_dump($fk_list);
2020

2121
?>
@@ -24,7 +24,7 @@ array(3) {
2424
[0]=>
2525
array(4) {
2626
["CLASS_NAME"]=>
27-
string(4) "game"
27+
string(11) "public.game"
2828
["ATTR_NAME"]=>
2929
string(12) "athlete_code"
3030
["KEY_SEQ"]=>
@@ -35,7 +35,7 @@ array(3) {
3535
[1]=>
3636
array(4) {
3737
["CLASS_NAME"]=>
38-
string(4) "game"
38+
string(11) "public.game"
3939
["ATTR_NAME"]=>
4040
string(10) "event_code"
4141
["KEY_SEQ"]=>
@@ -46,7 +46,7 @@ array(3) {
4646
[2]=>
4747
array(4) {
4848
["CLASS_NAME"]=>
49-
string(4) "game"
49+
string(11) "public.game"
5050
["ATTR_NAME"]=>
5151
string(9) "host_year"
5252
["KEY_SEQ"]=>
@@ -59,44 +59,44 @@ array(2) {
5959
[0]=>
6060
array(9) {
6161
["PKTABLE_NAME"]=>
62-
string(5) "event"
62+
string(14) "public.athlete"
6363
["PKCOLUMN_NAME"]=>
6464
string(4) "code"
6565
["FKTABLE_NAME"]=>
66-
string(4) "game"
66+
string(11) "public.game"
6767
["FKCOLUMN_NAME"]=>
68-
string(10) "event_code"
68+
string(12) "athlete_code"
6969
["KEY_SEQ"]=>
7070
string(1) "1"
7171
["UPDATE_RULE"]=>
7272
string(1) "1"
7373
["DELETE_RULE"]=>
7474
string(1) "1"
7575
["FK_NAME"]=>
76-
string(18) "fk_game_event_code"
76+
string(20) "fk_game_athlete_code"
7777
["PK_NAME"]=>
78-
string(13) "pk_event_code"
78+
string(15) "pk_athlete_code"
7979
}
8080
[1]=>
8181
array(9) {
8282
["PKTABLE_NAME"]=>
83-
string(7) "athlete"
83+
string(12) "public.event"
8484
["PKCOLUMN_NAME"]=>
8585
string(4) "code"
8686
["FKTABLE_NAME"]=>
87-
string(4) "game"
87+
string(11) "public.game"
8888
["FKCOLUMN_NAME"]=>
89-
string(12) "athlete_code"
89+
string(10) "event_code"
9090
["KEY_SEQ"]=>
9191
string(1) "1"
9292
["UPDATE_RULE"]=>
9393
string(1) "1"
9494
["DELETE_RULE"]=>
9595
string(1) "1"
9696
["FK_NAME"]=>
97-
string(20) "fk_game_athlete_code"
97+
string(18) "fk_game_event_code"
9898
["PK_NAME"]=>
99-
string(15) "pk_athlete_code"
99+
string(13) "pk_event_code"
100100
}
101101
}
102102

tests/pdo_cubrid_stmt_getcolumnmeta.phpt

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $result = $db->query('SELECT 1 FROM db_root');
1515

1616
var_dump($result->getColumnMeta(0));
1717

18-
$result = $db->query('SELECT * FROM game limit 1');
18+
$result = $db->query('SELECT * FROM public.game limit 1');
1919

2020
var_dump($result->getColumnMeta(0));
2121
var_dump($result->getColumnMeta(1));
@@ -63,7 +63,7 @@ array(16) {
6363
["name"]=>
6464
string(9) "host_year"
6565
["table"]=>
66-
string(4) "game"
66+
string(11) "public.game"
6767
["def"]=>
6868
string(4) "NULL"
6969
["precision"]=>
@@ -97,7 +97,7 @@ array(16) {
9797
["name"]=>
9898
string(10) "event_code"
9999
["table"]=>
100-
string(4) "game"
100+
string(11) "public.game"
101101
["def"]=>
102102
string(4) "NULL"
103103
["precision"]=>
@@ -131,7 +131,7 @@ array(16) {
131131
["name"]=>
132132
string(11) "nation_code"
133133
["table"]=>
134-
string(4) "game"
134+
string(11) "public.game"
135135
["def"]=>
136136
string(4) "NULL"
137137
["precision"]=>
@@ -165,7 +165,7 @@ array(16) {
165165
["name"]=>
166166
string(9) "game_date"
167167
["table"]=>
168-
string(4) "game"
168+
string(11) "public.game"
169169
["def"]=>
170170
string(4) "NULL"
171171
["precision"]=>

tests/pdo_enum.phpt

+2-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ array(16) {
101101
["name"]=>
102102
string(1) "a"
103103
["table"]=>
104-
string(11) "cubrid_test"
104+
string(15) "dba.cubrid_test"
105105
["def"]=>
106106
string(4) "NULL"
107107
["precision"]=>
@@ -129,3 +129,4 @@ array(16) {
129129
["pdo_type"]=>
130130
int(2)
131131
}
132+

tests_7/pdo_022.phpt

+6-6
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ array(16) {
6262
["name"]=>
6363
string(2) "id"
6464
["table"]=>
65-
string(11) "cubrid_test"
65+
string(15) "dba.cubrid_test"
6666
["def"]=>
6767
string(4) "NULL"
6868
["precision"]=>
@@ -96,7 +96,7 @@ array(16) {
9696
["name"]=>
9797
string(3) "val"
9898
["table"]=>
99-
string(11) "cubrid_test"
99+
string(15) "dba.cubrid_test"
100100
["def"]=>
101101
string(4) "NULL"
102102
["precision"]=>
@@ -130,7 +130,7 @@ array(16) {
130130
["name"]=>
131131
string(4) "val2"
132132
["table"]=>
133-
string(11) "cubrid_test"
133+
string(15) "dba.cubrid_test"
134134
["def"]=>
135135
string(4) "NULL"
136136
["precision"]=>
@@ -160,15 +160,15 @@ array(16) {
160160
}
161161
array(16) {
162162
["type"]=>
163-
string(7) "integer"
163+
string(6) "bigint"
164164
["name"]=>
165165
string(8) "count(*)"
166166
["table"]=>
167167
string(0) ""
168168
["def"]=>
169169
string(0) ""
170170
["precision"]=>
171-
int(10)
171+
int(19)
172172
["scale"]=>
173173
int(0)
174174
["not_null"]=>
@@ -188,7 +188,7 @@ array(16) {
188188
["reverse_unique"]=>
189189
int(0)
190190
["len"]=>
191-
int(11)
191+
int(20)
192192
["pdo_type"]=>
193193
int(2)
194194
}

tests_7/pdo_038.phpt

+15-15
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ PDOTest::skip();
1212
require_once 'pdo_test.inc';
1313
$db = PDOTest::factory();
1414

15-
$pk_list = $db->cubrid_schema(PDO::CUBRID_SCH_PRIMARY_KEY, "game");
15+
$pk_list = $db->cubrid_schema(PDO::CUBRID_SCH_PRIMARY_KEY, "public.game");
1616
var_dump($pk_list);
1717

18-
$fk_list = $db->cubrid_schema(PDO::CUBRID_SCH_IMPORTED_KEYS, "game");
18+
$fk_list = $db->cubrid_schema(PDO::CUBRID_SCH_IMPORTED_KEYS, "public.game");
1919
var_dump($fk_list);
2020

2121
?>
@@ -24,7 +24,7 @@ array(3) {
2424
[0]=>
2525
array(4) {
2626
["CLASS_NAME"]=>
27-
string(4) "game"
27+
string(11) "public.game"
2828
["ATTR_NAME"]=>
2929
string(12) "athlete_code"
3030
["KEY_SEQ"]=>
@@ -35,7 +35,7 @@ array(3) {
3535
[1]=>
3636
array(4) {
3737
["CLASS_NAME"]=>
38-
string(4) "game"
38+
string(11) "public.game"
3939
["ATTR_NAME"]=>
4040
string(10) "event_code"
4141
["KEY_SEQ"]=>
@@ -46,7 +46,7 @@ array(3) {
4646
[2]=>
4747
array(4) {
4848
["CLASS_NAME"]=>
49-
string(4) "game"
49+
string(11) "public.game"
5050
["ATTR_NAME"]=>
5151
string(9) "host_year"
5252
["KEY_SEQ"]=>
@@ -59,44 +59,44 @@ array(2) {
5959
[0]=>
6060
array(9) {
6161
["PKTABLE_NAME"]=>
62-
string(5) "event"
62+
string(14) "public.athlete"
6363
["PKCOLUMN_NAME"]=>
6464
string(4) "code"
6565
["FKTABLE_NAME"]=>
66-
string(4) "game"
66+
string(11) "public.game"
6767
["FKCOLUMN_NAME"]=>
68-
string(10) "event_code"
68+
string(12) "athlete_code"
6969
["KEY_SEQ"]=>
7070
string(1) "1"
7171
["UPDATE_RULE"]=>
7272
string(1) "1"
7373
["DELETE_RULE"]=>
7474
string(1) "1"
7575
["FK_NAME"]=>
76-
string(18) "fk_game_event_code"
76+
string(20) "fk_game_athlete_code"
7777
["PK_NAME"]=>
78-
string(13) "pk_event_code"
78+
string(15) "pk_athlete_code"
7979
}
8080
[1]=>
8181
array(9) {
8282
["PKTABLE_NAME"]=>
83-
string(7) "athlete"
83+
string(12) "public.event"
8484
["PKCOLUMN_NAME"]=>
8585
string(4) "code"
8686
["FKTABLE_NAME"]=>
87-
string(4) "game"
87+
string(11) "public.game"
8888
["FKCOLUMN_NAME"]=>
89-
string(12) "athlete_code"
89+
string(10) "event_code"
9090
["KEY_SEQ"]=>
9191
string(1) "1"
9292
["UPDATE_RULE"]=>
9393
string(1) "1"
9494
["DELETE_RULE"]=>
9595
string(1) "1"
9696
["FK_NAME"]=>
97-
string(20) "fk_game_athlete_code"
97+
string(18) "fk_game_event_code"
9898
["PK_NAME"]=>
99-
string(15) "pk_athlete_code"
99+
string(13) "pk_event_code"
100100
}
101101
}
102102

0 commit comments

Comments
 (0)