-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb_dev.trace.db
More file actions
224 lines (195 loc) · 17.7 KB
/
db_dev.trace.db
File metadata and controls
224 lines (195 loc) · 17.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
2025-01-25 20:08:43.984771+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a create table [*]user (\000d\000a user_id integer generated by default as identity,\000d\000a email varchar(255) not null,\000d\000a name varchar(255) not null,\000d\000a password varchar(255) not null,\000d\000a regdate timestamp(6) not null,\000d\000a primary key (user_id)\000d\000a )"; expected "identifier"; SQL statement:
create table user (
user_id integer generated by default as identity,
email varchar(255) not null,
name varchar(255) not null,
password varchar(255) not null,
regdate timestamp(6) not null,
primary key (user_id)
) [42001-232]
2025-01-25 20:08:43.999574+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists [*]user \000d\000a drop constraint if exists UKob8kqyqqgmefl0aco34akdtpe"; expected "identifier"; SQL statement:
alter table if exists user
drop constraint if exists UKob8kqyqqgmefl0aco34akdtpe [42001-232]
2025-01-25 20:08:43.999574+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists [*]user \000d\000a add constraint UKob8kqyqqgmefl0aco34akdtpe unique (email)"; expected "identifier"; SQL statement:
alter table if exists user
add constraint UKob8kqyqqgmefl0aco34akdtpe unique (email) [42001-232]
2025-01-25 20:08:44.000572+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists board \000d\000a add constraint FKfyf1fchnby6hndhlfaidier1r \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists board
add constraint FKfyf1fchnby6hndhlfaidier1r
foreign key (user_id)
references user [42001-232]
2025-01-25 20:08:44.017775+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists comment \000d\000a add constraint FK8kcum44fvpupyw6f5baccx25c \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists comment
add constraint FK8kcum44fvpupyw6f5baccx25c
foreign key (user_id)
references user [42001-232]
2025-01-25 20:09:47.342617+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a drop table if exists [*]user cascade "; expected "identifier"; SQL statement:
drop table if exists user cascade [42001-232]
2025-01-25 20:09:47.368173+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a create table [*]user (\000d\000a user_id integer generated by default as identity,\000d\000a regdate timestamp(6) not null,\000d\000a email varchar(255) not null unique,\000d\000a name varchar(255) not null,\000d\000a password varchar(255) not null,\000d\000a primary key (user_id)\000d\000a )"; expected "identifier"; SQL statement:
create table user (
user_id integer generated by default as identity,
regdate timestamp(6) not null,
email varchar(255) not null unique,
name varchar(255) not null,
password varchar(255) not null,
primary key (user_id)
) [42001-232]
2025-01-25 20:09:47.373086+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists board \000d\000a add constraint FKfyf1fchnby6hndhlfaidier1r \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists board
add constraint FKfyf1fchnby6hndhlfaidier1r
foreign key (user_id)
references user [42001-232]
2025-01-25 20:09:47.391390+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists comment \000d\000a add constraint FK8kcum44fvpupyw6f5baccx25c \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists comment
add constraint FK8kcum44fvpupyw6f5baccx25c
foreign key (user_id)
references user [42001-232]
2025-01-25 20:42:46.585153+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a drop table if exists [*]user cascade "; expected "identifier"; SQL statement:
drop table if exists user cascade [42001-232]
2025-01-25 20:42:46.614962+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a create table [*]user (\000d\000a user_id integer generated by default as identity,\000d\000a regdate timestamp(6) not null,\000d\000a email varchar(255) not null unique,\000d\000a name varchar(255) not null,\000d\000a password varchar(255) not null,\000d\000a primary key (user_id)\000d\000a )"; expected "identifier"; SQL statement:
create table user (
user_id integer generated by default as identity,
regdate timestamp(6) not null,
email varchar(255) not null unique,
name varchar(255) not null,
password varchar(255) not null,
primary key (user_id)
) [42001-232]
2025-01-25 20:42:46.621962+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists board \000d\000a add constraint FKfyf1fchnby6hndhlfaidier1r \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists board
add constraint FKfyf1fchnby6hndhlfaidier1r
foreign key (user_id)
references user [42001-232]
2025-01-25 20:42:46.649629+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists comment \000d\000a add constraint FK8kcum44fvpupyw6f5baccx25c \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists comment
add constraint FK8kcum44fvpupyw6f5baccx25c
foreign key (user_id)
references user [42001-232]
2025-01-25 20:43:29.683737+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select b1_0.board_id,b1_0.content,b1_0.regdate,b1_0.title,u1_0.user_id,u1_0.email,u1_0.name,u1_0.password,u1_0.regdate,b1_0.user_id,b1_0.view_cnt from board b1_0 left join [*]user u1_0 on u1_0.user_id=b1_0.user_id where b1_0.board_id=?"; expected "identifier"; SQL statement:
select b1_0.board_id,b1_0.content,b1_0.regdate,b1_0.title,u1_0.user_id,u1_0.email,u1_0.name,u1_0.password,u1_0.regdate,b1_0.user_id,b1_0.view_cnt from board b1_0 left join user u1_0 on u1_0.user_id=b1_0.user_id where b1_0.board_id=? [42001-232]
2025-01-25 20:43:29.849499+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select b1_0.board_id,b1_0.content,b1_0.regdate,b1_0.title,u1_0.user_id,u1_0.email,u1_0.name,u1_0.password,u1_0.regdate,b1_0.user_id,b1_0.view_cnt from board b1_0 left join [*]user u1_0 on u1_0.user_id=b1_0.user_id where b1_0.board_id=?"; expected "identifier"; SQL statement:
select b1_0.board_id,b1_0.content,b1_0.regdate,b1_0.title,u1_0.user_id,u1_0.email,u1_0.name,u1_0.password,u1_0.regdate,b1_0.user_id,b1_0.view_cnt from board b1_0 left join user u1_0 on u1_0.user_id=b1_0.user_id where b1_0.board_id=? [42001-232]
2025-01-25 20:43:37.204008+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select b1_0.board_id,b1_0.content,b1_0.regdate,b1_0.title,u1_0.user_id,u1_0.email,u1_0.name,u1_0.password,u1_0.regdate,b1_0.user_id,b1_0.view_cnt from board b1_0 left join [*]user u1_0 on u1_0.user_id=b1_0.user_id where b1_0.board_id=?"; expected "identifier"; SQL statement:
select b1_0.board_id,b1_0.content,b1_0.regdate,b1_0.title,u1_0.user_id,u1_0.email,u1_0.name,u1_0.password,u1_0.regdate,b1_0.user_id,b1_0.view_cnt from board b1_0 left join user u1_0 on u1_0.user_id=b1_0.user_id where b1_0.board_id=? [42001-232]
2025-01-25 20:43:37.222471+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select b1_0.board_id,b1_0.content,b1_0.regdate,b1_0.title,u1_0.user_id,u1_0.email,u1_0.name,u1_0.password,u1_0.regdate,b1_0.user_id,b1_0.view_cnt from board b1_0 left join [*]user u1_0 on u1_0.user_id=b1_0.user_id where b1_0.board_id=?"; expected "identifier"; SQL statement:
select b1_0.board_id,b1_0.content,b1_0.regdate,b1_0.title,u1_0.user_id,u1_0.email,u1_0.name,u1_0.password,u1_0.regdate,b1_0.user_id,b1_0.view_cnt from board b1_0 left join user u1_0 on u1_0.user_id=b1_0.user_id where b1_0.board_id=? [42001-232]
2025-01-25 20:43:42.770293+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "select b1_0.board_id,b1_0.content,b1_0.regdate,b1_0.title,u1_0.user_id,u1_0.email,u1_0.name,u1_0.password,u1_0.regdate,b1_0.user_id,b1_0.view_cnt from board b1_0 left join [*]user u1_0 on u1_0.user_id=b1_0.user_id where b1_0.board_id=?"; expected "identifier"; SQL statement:
select b1_0.board_id,b1_0.content,b1_0.regdate,b1_0.title,u1_0.user_id,u1_0.email,u1_0.name,u1_0.password,u1_0.regdate,b1_0.user_id,b1_0.view_cnt from board b1_0 left join user u1_0 on u1_0.user_id=b1_0.user_id where b1_0.board_id=? [42001-232]
2025-01-25 20:51:28.102517+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a drop table if exists [*]user cascade "; expected "identifier"; SQL statement:
drop table if exists user cascade [42001-232]
2025-01-25 20:51:28.127516+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a create table [*]user (\000d\000a user_id integer generated by default as identity,\000d\000a regdate timestamp(6) not null,\000d\000a email varchar(255) not null unique,\000d\000a name varchar(255) not null,\000d\000a password varchar(255) not null,\000d\000a primary key (user_id)\000d\000a )"; expected "identifier"; SQL statement:
create table user (
user_id integer generated by default as identity,
regdate timestamp(6) not null,
email varchar(255) not null unique,
name varchar(255) not null,
password varchar(255) not null,
primary key (user_id)
) [42001-232]
2025-01-25 20:51:28.132667+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists board \000d\000a add constraint FKfyf1fchnby6hndhlfaidier1r \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists board
add constraint FKfyf1fchnby6hndhlfaidier1r
foreign key (user_id)
references user [42001-232]
2025-01-25 20:51:28.152200+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists comment \000d\000a add constraint FK8kcum44fvpupyw6f5baccx25c \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists comment
add constraint FK8kcum44fvpupyw6f5baccx25c
foreign key (user_id)
references user [42001-232]
2025-01-25 20:56:11.433279+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a drop table if exists [*]user cascade "; expected "identifier"; SQL statement:
drop table if exists user cascade [42001-232]
2025-01-25 20:56:11.463059+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a create table [*]user (\000d\000a user_id integer generated by default as identity,\000d\000a regdate timestamp(6) not null,\000d\000a email varchar(255) not null unique,\000d\000a name varchar(255) not null,\000d\000a password varchar(255) not null,\000d\000a primary key (user_id)\000d\000a )"; expected "identifier"; SQL statement:
create table user (
user_id integer generated by default as identity,
regdate timestamp(6) not null,
email varchar(255) not null unique,
name varchar(255) not null,
password varchar(255) not null,
primary key (user_id)
) [42001-232]
2025-01-25 20:56:11.468381+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists board \000d\000a add constraint FKfyf1fchnby6hndhlfaidier1r \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists board
add constraint FKfyf1fchnby6hndhlfaidier1r
foreign key (user_id)
references user [42001-232]
2025-01-25 20:56:11.491579+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists comment \000d\000a add constraint FK8kcum44fvpupyw6f5baccx25c \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists comment
add constraint FK8kcum44fvpupyw6f5baccx25c
foreign key (user_id)
references user [42001-232]
2025-01-25 20:57:18.945598+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a drop table if exists [*]user cascade "; expected "identifier"; SQL statement:
drop table if exists user cascade [42001-232]
2025-01-25 20:57:18.978575+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a create table [*]user (\000d\000a user_id integer generated by default as identity,\000d\000a regdate timestamp(6) not null,\000d\000a email varchar(255) not null unique,\000d\000a name varchar(255) not null,\000d\000a password varchar(255) not null,\000d\000a primary key (user_id)\000d\000a )"; expected "identifier"; SQL statement:
create table user (
user_id integer generated by default as identity,
regdate timestamp(6) not null,
email varchar(255) not null unique,
name varchar(255) not null,
password varchar(255) not null,
primary key (user_id)
) [42001-232]
2025-01-25 20:57:18.983572+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists board \000d\000a add constraint FKfyf1fchnby6hndhlfaidier1r \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists board
add constraint FKfyf1fchnby6hndhlfaidier1r
foreign key (user_id)
references user [42001-232]
2025-01-25 20:57:19.010399+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists comment \000d\000a add constraint FK8kcum44fvpupyw6f5baccx25c \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists comment
add constraint FK8kcum44fvpupyw6f5baccx25c
foreign key (user_id)
references user [42001-232]
2025-01-25 21:03:02.306315+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a drop table if exists [*]user cascade "; expected "identifier"; SQL statement:
drop table if exists user cascade [42001-232]
2025-01-25 21:03:02.343169+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a create table [*]user (\000d\000a user_id integer generated by default as identity,\000d\000a regdate timestamp(6) not null,\000d\000a email varchar(255) not null unique,\000d\000a name varchar(255) not null,\000d\000a password varchar(255) not null,\000d\000a primary key (user_id)\000d\000a )"; expected "identifier"; SQL statement:
create table user (
user_id integer generated by default as identity,
regdate timestamp(6) not null,
email varchar(255) not null unique,
name varchar(255) not null,
password varchar(255) not null,
primary key (user_id)
) [42001-232]
2025-01-25 21:03:02.349389+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists board \000d\000a add constraint FKfyf1fchnby6hndhlfaidier1r \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists board
add constraint FKfyf1fchnby6hndhlfaidier1r
foreign key (user_id)
references user [42001-232]
2025-01-25 21:03:02.380513+09:00 jdbc[3]: exception
org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000d\000a alter table if exists comment \000d\000a add constraint FK8kcum44fvpupyw6f5baccx25c \000d\000a foreign key (user_id) \000d\000a references [*]user"; expected "identifier"; SQL statement:
alter table if exists comment
add constraint FK8kcum44fvpupyw6f5baccx25c
foreign key (user_id)
references user [42001-232]