Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
232ba70f
提交
232ba70f
authored
4月 05, 2011
作者:
noelgrandin@gmail.com
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix javadoc @param comments
上级
93c4c62d
隐藏空白字符变更
内嵌
并排
正在显示
18 个修改的文件
包含
18 行增加
和
23 行删除
+18
-23
Prepared.java
h2/src/main/org/h2/command/Prepared.java
+0
-2
Query.java
h2/src/main/org/h2/command/dml/Query.java
+1
-1
UndoLog.java
h2/src/main/org/h2/engine/UndoLog.java
+1
-1
Comparison.java
h2/src/main/org/h2/expression/Comparison.java
+1
-1
BaseIndex.java
h2/src/main/org/h2/index/BaseIndex.java
+1
-1
PageBtree.java
h2/src/main/org/h2/index/PageBtree.java
+1
-1
PageDataOverflow.java
h2/src/main/org/h2/index/PageDataOverflow.java
+1
-2
JdbcCallableStatement.java
h2/src/main/org/h2/jdbc/JdbcCallableStatement.java
+1
-1
JdbcPreparedStatement.java
h2/src/main/org/h2/jdbc/JdbcPreparedStatement.java
+1
-1
JdbcResultSet.java
h2/src/main/org/h2/jdbc/JdbcResultSet.java
+2
-2
WebApp.java
h2/src/main/org/h2/server/web/WebApp.java
+1
-1
DataReader.java
h2/src/main/org/h2/store/DataReader.java
+0
-1
PageLog.java
h2/src/main/org/h2/store/PageLog.java
+2
-2
PageStreamData.java
h2/src/main/org/h2/store/PageStreamData.java
+1
-1
Csv.java
h2/src/main/org/h2/tools/Csv.java
+1
-1
Transfer.java
h2/src/main/org/h2/value/Transfer.java
+2
-2
BuildBase.java
h2/src/tools/org/h2/build/BuildBase.java
+0
-1
ModelUtils.java
h2/src/tools/org/h2/jaqu/ModelUtils.java
+1
-1
没有找到文件。
h2/src/main/org/h2/command/Prepared.java
浏览文件 @
232ba70f
...
...
@@ -184,8 +184,6 @@ public abstract class Prepared {
/**
* Prepare this statement.
*
* @throws SQLException
*/
public
void
prepare
()
{
// nothing to do
...
...
h2/src/main/org/h2/command/dml/Query.java
浏览文件 @
232ba70f
...
...
@@ -263,7 +263,7 @@ public abstract class Query extends Prepared {
/**
* Execute the query, writing the result to the target result.
*
* @param
maxrows
the maximum number of rows to return
* @param
limit
the maximum number of rows to return
* @param target the target result (null will return the result)
* @return the result set (if the target is not set).
*/
...
...
h2/src/main/org/h2/engine/UndoLog.java
浏览文件 @
232ba70f
...
...
@@ -125,7 +125,7 @@ public class UndoLog {
/**
* Go to the right position in the file.
*
* @param file the file
* @param file
Pos the position in
the file
*/
void
seek
(
long
filePos
)
{
file
.
seek
(
filePos
*
Constants
.
FILE_BLOCK_SIZE
);
...
...
h2/src/main/org/h2/expression/Comparison.java
浏览文件 @
232ba70f
...
...
@@ -464,7 +464,7 @@ public class Comparison extends Condition {
*
* @param session the session
* @param other the second condition
* @param a
d
d true for AND, false for OR
* @param a
n
d true for AND, false for OR
* @return null or the third condition
*/
Expression
getAdditional
(
Session
session
,
Comparison
other
,
boolean
and
)
{
...
...
h2/src/main/org/h2/index/BaseIndex.java
浏览文件 @
232ba70f
...
...
@@ -107,7 +107,7 @@ public abstract class BaseIndex extends SchemaObjectBase implements Index {
* @param higherThan the lower limit (excluding)
* @param last the last row, or null for no limit
* @return the cursor
* @throws DbException
* @throws DbException
always
*/
public
Cursor
findNext
(
Session
session
,
SearchRow
higherThan
,
SearchRow
last
)
{
throw
DbException
.
throwInternalError
();
...
...
h2/src/main/org/h2/index/PageBtree.java
浏览文件 @
232ba70f
...
...
@@ -151,7 +151,7 @@ public abstract class PageBtree extends Page {
*
* @param cursor the cursor
* @param first the row to find
* @param if the row should be bigger
* @param
bigger
if the row should be bigger
*/
abstract
void
find
(
PageBtreeCursor
cursor
,
SearchRow
first
,
boolean
bigger
);
...
...
h2/src/main/org/h2/index/PageDataOverflow.java
浏览文件 @
232ba70f
...
...
@@ -68,10 +68,9 @@ public class PageDataOverflow extends Page {
/**
* Create an object from the given data page.
*
* @param
leaf the leaf pag
e
* @param
store the page stor
e
* @param pageId the page id
* @param data the data page
* @param offset the offset
*/
private
PageDataOverflow
(
PageStore
store
,
int
pageId
,
Data
data
)
{
this
.
store
=
store
;
...
...
h2/src/main/org/h2/jdbc/JdbcCallableStatement.java
浏览文件 @
232ba70f
...
...
@@ -267,7 +267,7 @@ public class JdbcCallableStatement extends JdbcPreparedStatement implements Call
/**
* Returns the value of the specified column as a BigDecimal.
*
* @deprecated
* @deprecated
use {@link #getBigDecimal(String)} or {@link #getBigDecimal(int)}
*
* @param parameterIndex the parameter index (1, 2, ...)
* @param scale is ignored
...
...
h2/src/main/org/h2/jdbc/JdbcPreparedStatement.java
浏览文件 @
232ba70f
...
...
@@ -669,7 +669,7 @@ public class JdbcPreparedStatement extends JdbcStatement implements PreparedStat
/**
* [Not supported] This feature is deprecated and not supported.
*
* @deprecated
* @deprecated
this feature is deprecated.
*/
public
void
setUnicodeStream
(
int
parameterIndex
,
InputStream
x
,
int
length
)
throws
SQLException
{
throw
unsupported
(
"unicodeStream"
);
...
...
h2/src/main/org/h2/jdbc/JdbcResultSet.java
浏览文件 @
232ba70f
...
...
@@ -696,7 +696,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/**
* Returns the value of the specified column as a BigDecimal.
*
* @deprecated
* @deprecated
use {@link #getBigDecimal(String)} or {@link #getBigDecimal(int)}
*
* @param columnLabel the column label
* @param scale the scale of the returned value
...
...
@@ -722,7 +722,7 @@ public class JdbcResultSet extends TraceObject implements ResultSet {
/**
* Returns the value of the specified column as a BigDecimal.
*
* @deprecated
* @deprecated
use {@link #getBigDecimal(String)} or {@link #getBigDecimal(int)}
*
* @param columnIndex (1,2,...)
* @param scale the scale of the returned value
...
...
h2/src/main/org/h2/server/web/WebApp.java
浏览文件 @
232ba70f
...
...
@@ -122,7 +122,7 @@ public class WebApp {
* Process an HTTP request.
*
* @param file the file that was requested
* @param the host address
* @param
hostAddr
the host address
* @return the name of the file to return to the client
*/
String
processRequest
(
String
file
,
String
hostAddr
)
{
...
...
h2/src/main/org/h2/store/DataReader.java
浏览文件 @
232ba70f
...
...
@@ -145,7 +145,6 @@ public class DataReader extends Reader {
/**
* Read one character from the input stream.
*
* @param in the input stream
* @return the character
*/
private
char
readChar
()
throws
IOException
{
...
...
h2/src/main/org/h2/store/PageLog.java
浏览文件 @
232ba70f
...
...
@@ -416,7 +416,7 @@ public class PageLog {
* opening the database.
*
* @param sessionId the session id
* @param the data page with the prepare entry
* @param
pageId
the data page with the prepare entry
* @param transaction the transaction name, or null to rollback
*/
private
void
setPrepareCommit
(
int
sessionId
,
int
pageId
,
String
transaction
)
{
...
...
@@ -533,7 +533,7 @@ public class PageLog {
/**
* Mark a transaction as committed.
*
* @param session the session
* @param session
Id
the session
*/
void
commit
(
int
sessionId
)
{
if
(
trace
.
isDebugEnabled
())
{
...
...
h2/src/main/org/h2/store/PageStreamData.java
浏览文件 @
232ba70f
...
...
@@ -90,7 +90,7 @@ public class PageStreamData extends Page {
* Write the data to the buffer.
*
* @param buff the source data
* @param off the offset in the source buffer
* @param off
set
the offset in the source buffer
* @param len the number of bytes to write
* @return the number of bytes written
*/
...
...
h2/src/main/org/h2/tools/Csv.java
浏览文件 @
232ba70f
...
...
@@ -204,7 +204,7 @@ public class Csv implements SimpleRowSource {
* @param reader the reader
* @param colNames or null if the column names should be read from the CSV file
* @return the result set
* @throws
SQLException,
IOException
* @throws IOException
*/
public
ResultSet
read
(
Reader
reader
,
String
[]
colNames
)
throws
IOException
{
init
(
null
,
null
);
...
...
h2/src/main/org/h2/value/Transfer.java
浏览文件 @
232ba70f
...
...
@@ -168,7 +168,7 @@ public class Transfer {
/**
* Write a double.
*
* @param
x
the value
* @param
i
the value
* @return itself
*/
private
Transfer
writeDouble
(
double
i
)
throws
IOException
{
...
...
@@ -179,7 +179,7 @@ public class Transfer {
/**
* Write a float.
*
* @param
x
the value
* @param
i
the value
* @return itself
*/
private
Transfer
writeFloat
(
float
i
)
throws
IOException
{
...
...
h2/src/tools/org/h2/build/BuildBase.java
浏览文件 @
232ba70f
...
...
@@ -117,7 +117,6 @@ public class BuildBase {
/**
* Filter a list of file names.
*
* @param files the original list
* @param keep if matching file names should be kept or removed
* @param pattern the file name pattern
* @return the filtered file list
...
...
h2/src/tools/org/h2/jaqu/ModelUtils.java
浏览文件 @
232ba70f
...
...
@@ -112,7 +112,7 @@ public class ModelUtils {
/**
* Returns a SQL type mapping for a Java class.
*
* @param field the field to map
* @param field
Def
the field to map
* @param strictTypeMapping throws a RuntimeException if type is unsupported
* @return
*/
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论