Skip to content

Commit

Permalink
revert unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav274 committed Sep 26, 2023
1 parent ba126b8 commit 924edd5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,22 +108,22 @@ workflows:
################################
- Postgres:
name: Third Party Test - Postgres | v3.10 | Linux
# filters:
# branches:
# only:
# - master
# - staging
filters:
branches:
only:
- master
- staging
################################
### THIRD PARTY: Staging, Master
################################
################################
- MySQL:
name: Third Party Test - MySQL | v3.10 | Linux
# filters:
# branches:
# only:
# - master
# - staging
filters:
branches:
only:
- master
- staging
################################
### NOTEBOOKS: Staging, Master
################################
Expand Down
6 changes: 3 additions & 3 deletions test/third_party_tests/test_native_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _create_table_in_native_database(self):
"""USE test_data_source {
CREATE TABLE test_table (
name VARCHAR(10),
age INT,
Age INT,
comment VARCHAR (100)
)
}""",
Expand All @@ -50,7 +50,7 @@ def _insert_value_into_native_database(self, col1, col2, col3):
self.evadb,
f"""USE test_data_source {{
INSERT INTO test_table (
name, age, comment
name, Age, comment
) VALUES (
'{col1}', {col2}, '{col3}'
)
Expand Down Expand Up @@ -80,7 +80,7 @@ def _drop_table_in_evadb_database(self):
def _create_evadb_table_using_select_query(self):
execute_query_fetch_all(
self.evadb,
"""CREATE TABLE eva_table AS SELECT name, age FROM test_data_source.test_table;""",
"""CREATE TABLE eva_table AS SELECT name, Age FROM test_data_source.test_table;""",
)

# check if the create table is successful
Expand Down

0 comments on commit 924edd5

Please sign in to comment.