Skip to content

Commit b530ac9

Browse files
authored
chore(from_unixtime): remove UDF from_unixtime (#1179)
* chore(from_unixtime): remove UDF from_unixtime * chore(from_unixtime): restore timestamp.rs for further usage * chore(from_unixtime): address fmt issue
1 parent 76f1a79 commit b530ac9

File tree

2 files changed

+1
-141
lines changed

2 files changed

+1
-141
lines changed

src/common/function/src/scalars/timestamp.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,10 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
use std::sync::Arc;
16-
mod from_unixtime;
17-
18-
use from_unixtime::FromUnixtimeFunction;
19-
2015
use crate::scalars::function_registry::FunctionRegistry;
2116

2217
pub(crate) struct TimestampFunction;
2318

2419
impl TimestampFunction {
25-
pub fn register(registry: &FunctionRegistry) {
26-
registry.register(Arc::new(FromUnixtimeFunction::default()));
27-
}
20+
pub fn register(_registry: &FunctionRegistry) {}
2821
}

src/common/function/src/scalars/timestamp/from_unixtime.rs

Lines changed: 0 additions & 133 deletions
This file was deleted.

0 commit comments

Comments
 (0)