Skip to content

Rename #102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion connectors/kafka-safe-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>connectors</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>kafka-safe-connector</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion connectors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>flink-sql-runner-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>connectors</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion connectors/postgresql-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>connectors</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>postgresql-connector</artifactId>
Expand Down
28 changes: 24 additions & 4 deletions flink-sql-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>flink-sql-runner-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>flink-sql-runner</artifactId>
Expand Down Expand Up @@ -173,19 +173,19 @@
<dependency>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>functions-common</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>udf-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>system-functions-sample</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -513,5 +513,25 @@
</plugins>
</build>
</profile>

<profile>
<id>m2e</id>
<activation>
<property>
<name>m2e.version</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
2 changes: 1 addition & 1 deletion formats/flexible-csv-format/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>formats</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>flexible-csv-format</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion formats/flexible-json-format/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>formats</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>flexible-json-format</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion formats/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>flink-sql-runner-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>formats</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion functions/functions-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>functions</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>functions-common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion functions/math-functions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>functions</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>math-functions</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.distribution;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.flink.table.functions.ScalarFunction;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.util;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.commons.math3.util.FastMath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.util;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.commons.math3.util.FastMath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.util;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.commons.math3.util.FastMath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.distribution;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.flink.table.functions.ScalarFunction;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.util;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.commons.math3.util.FastMath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.util;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.commons.math3.util.FastMath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.util;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.commons.math3.util.FastMath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.distribution;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.flink.table.functions.ScalarFunction;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.distribution;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.flink.table.functions.ScalarFunction;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.util;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.commons.math3.util.FastMath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.math.util;
package com.datasqrl.flinkrunner.stdlib.math;

import com.google.auto.service.AutoService;
import org.apache.commons.math3.util.FastMath;
Expand Down
2 changes: 1 addition & 1 deletion functions/openai-functions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.datasqrl.flinkrunner</groupId>
<artifactId>functions</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>
<artifactId>openai-functions</artifactId>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.openai;
package com.datasqrl.flinkrunner.stdlib.openai;

import lombok.Builder;
import lombok.Getter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.openai;
package com.datasqrl.flinkrunner.stdlib.openai;

import com.datasqrl.flinkrunner.functions.openai.util.FunctionMetricTracker;
import com.datasqrl.flinkrunner.stdlib.openai.util.FunctionMetricTracker;
import java.util.concurrent.Callable;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutorService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.openai;
package com.datasqrl.flinkrunner.stdlib.openai;

import static com.datasqrl.flinkrunner.functions.openai.OpenAIUtil.API_KEY;
import static com.datasqrl.flinkrunner.functions.openai.OpenAIUtil.COMPLETIONS_API;
import static com.datasqrl.flinkrunner.stdlib.openai.OpenAIUtil.API_KEY;
import static com.datasqrl.flinkrunner.stdlib.openai.OpenAIUtil.COMPLETIONS_API;

import java.io.IOException;
import java.net.URI;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.openai;
package com.datasqrl.flinkrunner.stdlib.openai;

import static com.datasqrl.flinkrunner.functions.openai.OpenAIUtil.*;
import static com.datasqrl.flinkrunner.stdlib.openai.OpenAIUtil.*;

import java.io.IOException;
import java.net.URI;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.openai;
package com.datasqrl.flinkrunner.stdlib.openai;

public class OpenAIUtil {
public static final String API_KEY = "OPENAI_API_KEY";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.openai;
package com.datasqrl.flinkrunner.stdlib.openai;

import com.datasqrl.flinkrunner.functions.openai.util.FunctionMetricTracker;
import com.datasqrl.flinkrunner.stdlib.openai.util.FunctionMetricTracker;
import com.google.auto.service.AutoService;
import java.util.concurrent.CompletableFuture;
import org.apache.flink.table.functions.AsyncScalarFunction;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.openai;
package com.datasqrl.flinkrunner.stdlib.openai;

import com.google.auto.service.AutoService;
import java.util.concurrent.CompletableFuture;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.openai.util;
package com.datasqrl.flinkrunner.stdlib.openai.util;

import org.apache.flink.metrics.Counter;
import org.apache.flink.metrics.Gauge;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.openai.util;
package com.datasqrl.flinkrunner.stdlib.openai.util;

import java.util.ArrayList;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datasqrl.flinkrunner.functions.openai;
package com.datasqrl.flinkrunner.stdlib.openai;

import com.datasqrl.flinkrunner.functions.openai.util.FunctionMetricTracker;
import com.datasqrl.flinkrunner.stdlib.openai.util.FunctionMetricTracker;
import com.google.auto.service.AutoService;
import java.util.concurrent.CompletableFuture;
import org.apache.flink.table.functions.AsyncScalarFunction;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
*/
package com.datasqrl.flinkrunner.functions.openai;

import static com.datasqrl.flinkrunner.functions.openai.util.FunctionMetricTracker.*;
import static com.datasqrl.flinkrunner.stdlib.openai.util.FunctionMetricTracker.*;
import static java.lang.String.format;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;

import com.datasqrl.flinkrunner.stdlib.openai.OpenAICompletions;
import com.datasqrl.flinkrunner.stdlib.openai.completions;
import java.io.IOException;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@
*/
package com.datasqrl.flinkrunner.functions.openai;

import static com.datasqrl.flinkrunner.functions.openai.util.FunctionMetricTracker.*;
import static com.datasqrl.flinkrunner.stdlib.openai.util.FunctionMetricTracker.*;
import static java.lang.String.format;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.*;

import com.datasqrl.flinkrunner.stdlib.openai.OpenAICompletions;
import com.datasqrl.flinkrunner.stdlib.openai.extract_json;
import java.io.IOException;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@
*/
package com.datasqrl.flinkrunner.functions.openai;

import static com.datasqrl.flinkrunner.functions.openai.util.FunctionMetricTracker.*;
import static com.datasqrl.flinkrunner.stdlib.openai.util.FunctionMetricTracker.*;
import static java.lang.String.format;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.*;

import com.datasqrl.flinkrunner.stdlib.openai.OpenAIEmbeddings;
import com.datasqrl.flinkrunner.stdlib.openai.vector_embedd;
import java.io.IOException;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
Expand Down
Loading
Loading