Re: Creating user-defined functions dynamically

2023-08-02 Thread LakeShen
On Aug 1, 2023, at 1:40 PM, mbu...@gmail.com wrote: > > > > Hello all, > > > > > > > > I have a question about user-defined functions. I see that one can extend > > Calcite by adding new functions to various libraries. > > > > My question is wh

Re: Creating user-defined functions dynamically

2023-08-01 Thread Julian Hyde
://calcite.apache.org/docs/model.html#map-schema > On Aug 1, 2023, at 1:40 PM, mbu...@gmail.com wrote: > > Hello all, > > > > I have a question about user-defined functions. I see that one can extend > Calcite by adding new functions to various libraries. > > My question is wh

Creating user-defined functions dynamically

2023-08-01 Thread mbudiu
Hello all, I have a question about user-defined functions. I see that one can extend Calcite by adding new functions to various libraries. My question is whether there exists a mechanism to add such functions *dynamically*, without changing the Calcite code. This would allow users to write

[jira] [Created] (CALCITE-4564) Initialization context for non-static user-defined functions (UDFs)

2021-04-05 Thread Julian Hyde (Jira)
Julian Hyde created CALCITE-4564: Summary: Initialization context for non-static user-defined functions (UDFs) Key: CALCITE-4564 URL: https://issues.apache.org/jira/browse/CALCITE-4564 Project

Re: User defined functions

2018-07-24 Thread Stamatis Zampetakis
ant to achieve. > > > > > > I suppose you are using the JdbcSchema (directly or indirectly), most > > > likely through the JDBC Adapter. > > > If that's the case then probably the reason that you don't see the > > > user-defined functions is that the get

Re: User defined functions

2018-07-20 Thread Michael Mior
tly or indirectly), most > > likely through the JDBC Adapter. > > If that's the case then probably the reason that you don't see the > > user-defined functions is that the getFunctions() method is not yet > > implemented. > > > > Best, > > Stamatis > > >

Re: User defined functions

2018-07-20 Thread Julian Hyde
se then probably the reason that you don't see the > user-defined functions is that the getFunctions() method is not yet > implemented. > > Best, > Stamatis > > 2018-07-12 7:12 GMT+02:00 subbarao mitta : > >> Hi how to add existing user defined functions in Oracle databa

Re: User defined functions

2018-07-20 Thread Stamatis Zampetakis
Hello Subbarao, I am not sure, I understand what you want to achieve. I suppose you are using the JdbcSchema (directly or indirectly), most likely through the JDBC Adapter. If that's the case then probably the reason that you don't see the user-defined functions is that the getFunctions() method

User defined functions

2018-07-11 Thread subbarao mitta
Hi how to add existing user defined functions in Oracle database to schema in calcite.I am connected Oracle database using schema but I don't know how to add existing user defined functions to schema.

Re: How to add user defined functions in schema

2018-06-12 Thread Muhammad Gelbana
ady having some of the functions in Oracle database like > FN_code("caseno") then how can I add these type of existing user defined > functions in apache calcite schema >

How to add user defined functions in schema

2018-06-11 Thread subbarao mitta
IAM already having some of the functions in Oracle database like FN_code("caseno") then how can I add these type of existing user defined functions in apache calcite schema

[jira] [Created] (CALCITE-2354) How to add existing user-defined functions in Schema

2018-06-05 Thread Subbarao (JIRA)
Subbarao created CALCITE-2354: - Summary: How to add existing user-defined functions in Schema Key: CALCITE-2354 URL: https://issues.apache.org/jira/browse/CALCITE-2354 Project: Calcite Issue

[jira] [Created] (CALCITE-2053) Overloaded user-defined functions that have Double and BigDecimal arguments will goes wrong

2017-11-15 Thread yuqi (JIRA)
yuqi created CALCITE-2053: - Summary: Overloaded user-defined functions that have Double and BigDecimal arguments will goes wrong Key: CALCITE-2053 URL: https://issues.apache.org/jira/browse/CALCITE-2053

[jira] [Created] (CALCITE-1969) Annotate user-defined functions as strict and semi-strict

2017-08-25 Thread Julian Hyde (JIRA)
Julian Hyde created CALCITE-1969: Summary: Annotate user-defined functions as strict and semi-strict Key: CALCITE-1969 URL: https://issues.apache.org/jira/browse/CALCITE-1969 Project: Calcite

Re: User defined functions with non scalar return type

2016-12-14 Thread Julian Hyde
Calcite doesn’t support that currently. Here’s what it would take: First, complete the support for user-defined types. We already allow user-defined types internally (see how MockCatalogReader creates a structured type “Address” and how SqlValidatorTest.testStructuredTypes uses it) but they’re

User defined functions with non scalar return type

2016-12-09 Thread Julian Feinauer
Hey Guys, first of all, great work! I’m following the Calcite project since I worked a lot with Drill about 8 months ago and I’m very pleased about how everything has developed. We are currently trying to replace our self-made SQL Parser and Engine with Calcite. But I have one question as