Skip to content

Commit

Permalink
fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-hx committed Nov 13, 2024
1 parent 88add1d commit 61f159c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cpp/lib/Exceptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ SnowflakeGeneralException::SnowflakeGeneralException(SF_ERROR_STRUCT *error) :
m_message(error->msg ? error->msg : ""),
m_file(error->file ? error->file : ""),
m_line(error->line),
m_queryId(error->sfqid ? error->sfqid : ""),
m_sqlState(error->sqlstate ? error->sqlstate : ""),
m_queryId(error->sfqid),
m_sqlState(error->sqlstate),
m_code((int)error->error_code)
{
std::string errmsg = setupErrorMessage(m_message, m_file, m_line, m_queryId, m_sqlState, m_code);
Expand Down
2 changes: 1 addition & 1 deletion tests/test_bind_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ void test_array_binding_normal(void** unused) {
}

void test_array_binding_stage(void** unused) {
test_array_binding_core(100000);
test_array_binding_core(10000);
}

int main(void) {
Expand Down

0 comments on commit 61f159c

Please sign in to comment.