Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

[New Engine] Function names in schema should keep consistent with input in letter cases #606

Closed
chloe-zh opened this issue Jul 21, 2020 · 1 comment
Assignees
Labels
enhancement New feature or request SQL

Comments

@chloe-zh
Copy link
Member

Example query: SELECT ABS(12)

Expected:

{
  "schema": [{
    "name": "ABS(12)",
    "type": "integer"
  }],
  "total": 1,
  "datarows": [[12]],
  "size": 1
}

Current:

{
  "schema": [{
    "name": "abs(12)",
    "type": "integer"
  }],
  "total": 1,
  "datarows": [[12]],
  "size": 1
}
@dai-chen
Copy link
Member

Column names are exactly the same as what's present in SELECT now.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request SQL
Projects
None yet
Development

No branches or pull requests

2 participants