This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch try_fix_python
in repository https://gitbox.apache.org/repos/asf/tsfile.git


The following commit(s) were added to refs/heads/try_fix_python by this push:
     new 2910d7d8 fix
2910d7d8 is described below

commit 2910d7d88a24c9632d64d93fd20f97a4e157e934
Author: HTHou <[email protected]>
AuthorDate: Sun Aug 11 22:54:38 2024 +0800

    fix
---
 python/tsfile/tsfile.pxd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/tsfile/tsfile.pxd b/python/tsfile/tsfile.pxd
index 1480371f..a41794e2 100644
--- a/python/tsfile/tsfile.pxd
+++ b/python/tsfile/tsfile.pxd
@@ -89,7 +89,7 @@ cdef extern from "./TsFile-cwrapper.h":
     # writer tsfile data
     ErrorCode tsfile_register_table(CTsFileWriter writer, TableSchema* schema)
     ErrorCode tsfile_register_table_column(CTsFileWriter writer, const char* 
table_name, ColumnSchema* schema)
-    TsFileRowData create_tsfile_row(const char* table_name, timestamp time, 
int column_length)
+    TsFileRowData create_tsfile_row(const char* table_name, timestamp 
timestamp, int column_length)
     ErrorCode insert_data_into_tsfile_row_int32(TsFileRowData row_data, char* 
column_name, int value)
     ErrorCode insert_data_into_tsfile_row_int64(TsFileRowData row_data, char* 
column_name, long long value)
     ErrorCode insert_data_into_tsfile_row_float(TsFileRowData row_data,  char* 
column_name, float value)

Reply via email to